aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-18 02:55:05 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-18 02:55:05 +0000
commit3803ee9372af957b2fa7e3edd39a0d5f703ab7ab (patch)
treeb5703f10b21091f8bae1edea7ecebc35da549c29 /lib/python/Components
parent984331e8556f07cee27bfb4416c4391ff0c2ce62 (diff)
downloadenigma2-3803ee9372af957b2fa7e3edd39a0d5f703ab7ab.tar.gz
enigma2-3803ee9372af957b2fa7e3edd39a0d5f703ab7ab.zip
fix stopEvent for EventInfoProgress
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/EventInfo.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Components/EventInfo.py b/lib/python/Components/EventInfo.py
index ce13ba85..6202fb8b 100644
--- a/lib/python/Components/EventInfo.py
+++ b/lib/python/Components/EventInfo.py
@@ -60,7 +60,8 @@ class EventInfoProgress(PerServiceDisplayProgress, EventInfo):
def update(self, ev):
self.g.setRange(0, ev.getDuration())
progress = int(time() - ev.getBeginTime())
-
+
self.setValue(progress)
- \ No newline at end of file
+ def stopEvent(self):
+ self.setValue(0) \ No newline at end of file