diff options
Diffstat (limited to 'lib/python/Screens/EventView.py')
| -rw-r--r-- | lib/python/Screens/EventView.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/EventView.py b/lib/python/Screens/EventView.py index 498702e5..86947461 100644 --- a/lib/python/Screens/EventView.py +++ b/lib/python/Screens/EventView.py @@ -39,8 +39,8 @@ class EventViewBase: self.onShown.append(self.onCreate) def onCreate(self): - self.setEvent(self.event) self.setService(self.currentService) + self.setEvent(self.event) def prevEvent(self): if self.cbFunc is not None: @@ -62,6 +62,7 @@ class EventViewBase: print "Timeredit aborted" def setService(self, service): + self.currentService=service if self.isRecording: self["channel"].setText(_("Recording")) |
