summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--presentty/transition.py2
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
class Transition(urwid.Widget):
def __init__(self, duration=0.4):
super(Transition, self).__init__()
- self.duration = 0.4
+ self.duration = duration
self.old = None
self.new = None
self.progress = 0.0