diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-26 21:30:36 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-26 21:30:36 +0000 |
| commit | 30089e0564376c5fc3431aa4b03336b0fe513416 (patch) | |
| tree | b21caa94cbaae137ec36711398e66681a80cc22b /lib/python/Screens/EpgSelection.py | |
| parent | a8e89bcdbbe13210b41eed3694383ab73a46d38a (diff) | |
| download | enigma2-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/Screens/EpgSelection.py')
| -rw-r--r-- | lib/python/Screens/EpgSelection.py | 3 |
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: |
