diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/TimerEdit.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py index c424417f..bd4b64d3 100644 --- a/lib/python/Screens/TimerEdit.py +++ b/lib/python/Screens/TimerEdit.py @@ -84,6 +84,7 @@ class TimerEditList(Screen): for timer in self.session.nav.RecordTimer.processed_timers: self.list.append(TimerEntryComponent(timer, processed=True)) + self.list.sort(cmp = lambda x, y: x[0].begin < y[0].begin) def showLog(self): self.session.openWithCallback(self.finishedEdit, TimerLog, self["timerlist"].getCurrent()[0]) |
