aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 21:30:36 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 21:30:36 +0000
commit30089e0564376c5fc3431aa4b03336b0fe513416 (patch)
treeb21caa94cbaae137ec36711398e66681a80cc22b /lib/python
parenta8e89bcdbbe13210b41eed3694383ab73a46d38a (diff)
downloadenigma2-30089e0564376c5fc3431aa4b03336b0fe513416.tar.gz
enigma2-30089e0564376c5fc3431aa4b03336b0fe513416.zip
fix bluescreen when try to use the epg time search function in single epg
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/EpgSelection.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/EpgSelection.py b/lib/python/Screens/EpgSelection.py
index 3284e641..a5b61a1c 100644
--- a/lib/python/Screens/EpgSelection.py
+++ b/lib/python/Screens/EpgSelection.py
@@ -77,7 +77,8 @@ class EPGSelection(Screen):
self.onLayoutFinish.append(self.onCreate)
def enterDateTime(self):
- self.session.openWithCallback(self.onDateTimeInputClosed, TimeDateInput)
+ if self.type == EPG_TYPE_MULTI:
+ self.session.openWithCallback(self.onDateTimeInputClosed, TimeDateInput)
def onDateTimeInputClosed(self, ret):
if len(ret) > 1: