diff options
Diffstat (limited to 'lib/python/Components/EventInfo.py')
| -rw-r--r-- | lib/python/Components/EventInfo.py | 5 |
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 |
