Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/view/home/transitionbox.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/view/home/transitionbox.py b/shell/view/home/transitionbox.py
index 61d94c9..fc6a866 100644
--- a/shell/view/home/transitionbox.py
+++ b/shell/view/home/transitionbox.py
@@ -46,12 +46,12 @@ class TransitionBox(SpreadBox):
def __init__(self):
SpreadBox.__init__(self, background_color=0xe2e2e2ff)
- self._scale = 0.0
+ self._scale = units.XLARGE_ICON_SCALE
- self._my_icon = MyIcon(units.LARGE_ICON_SCALE)
+ self._my_icon = MyIcon(self._scale)
self.set_center_item(self._my_icon)
- self._animator = animator.Animator(0.5, 30)
+ self._animator = animator.Animator(0.3, 30)
self._animator.connect('completed', self._animation_completed_cb)
def _animation_completed_cb(self, anim):