Get rid of the notebook which was causing strange flickering.

This commit is contained in:
Marco Pesenti Gritti
2007-04-16 12:26:17 +02:00
parent 1b84784d26
commit f67a243653
4 changed files with 16 additions and 39 deletions
+2 -2
View File
@@ -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()