From 30089e0564376c5fc3431aa4b03336b0fe513416 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Wed, 26 Apr 2006 21:30:36 +0000 Subject: [PATCH] fix bluescreen when try to use the epg time search function in single epg --- lib/python/Screens/EpgSelection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- 2.30.2