aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/EventView.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-15 11:34:31 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-15 11:34:31 +0000
commit54ef002317d169d6dafbe48735560676435ce53d (patch)
tree2720de1403ee884748d57e64d94468aacc6ba65b /lib/python/Screens/EventView.py
parenta291e3dc1c083185ed5588bd04ba27ba0ad27b75 (diff)
downloadenigma2-54ef002317d169d6dafbe48735560676435ce53d.tar.gz
enigma2-54ef002317d169d6dafbe48735560676435ce53d.zip
fix bug in EpgList.py (line 79, in getCurrent .. TypeError: unscribtable object)
make similar broadcasting search working in multiepg
Diffstat (limited to 'lib/python/Screens/EventView.py')
-rw-r--r--lib/python/Screens/EventView.py3
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"))