Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/frame.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-04-16 10:26:17 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-04-16 10:26:17 (GMT)
commitf67a2436538b4fee4747f6d9f41b174801d7ef64 (patch)
tree7d3a25409339f414de93b19a2f5f85e8d865be2e /shell/view/frame/frame.py
parent1b84784d26ce29daa1a94b1cfdeea171dc3476fe (diff)
Get rid of the notebook which was causing strange flickering.
Diffstat (limited to 'shell/view/frame/frame.py')
-rw-r--r--shell/view/frame/frame.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/view/frame/frame.py b/shell/view/frame/frame.py
index bd598aa..472cb5f 100644
--- a/shell/view/frame/frame.py
+++ b/shell/view/frame/frame.py
@@ -169,7 +169,7 @@ class Frame(object):
if self._animator:
self._animator.stop()
- self._animator = animator.Animator(0.5, 30, animator.EASE_OUT_EXPO)
+ self._animator = animator.Animator(0.5)
self._animator.add(_Animation(self, 0.0))
self._animator.start()
@@ -188,7 +188,7 @@ class Frame(object):
if self._animator:
self._animator.stop()
- self._animator = animator.Animator(0.5, 30, animator.EASE_OUT_EXPO)
+ self._animator = animator.Animator(0.5)
self._animator.add(_Animation(self, 1.0))
self._animator.start()