diff options
-rw-r--r-- | presentty/transition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/presentty/transition.py b/presentty/transition.py index 9133629..c699ddb 100644 --- a/presentty/transition.py +++ b/presentty/transition.py | |||
@@ -18,7 +18,7 @@ import urwid | |||
18 | class Transition(urwid.Widget): | 18 | class Transition(urwid.Widget): |
19 | def __init__(self, duration=0.4): | 19 | def __init__(self, duration=0.4): |
20 | super(Transition, self).__init__() | 20 | super(Transition, self).__init__() |
21 | self.duration = 0.4 | 21 | self.duration = duration |
22 | self.old = None | 22 | self.old = None |
23 | self.new = None | 23 | self.new = None |
24 | self.progress = 0.0 | 24 | self.progress = 0.0 |