From dd6b7236b87a06c700ee8e3d7686230ea8e13159 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Sat, 17 Feb 2007 18:55:26 +0000 Subject: zaptimers now do wakeup the box from standby and deepstandby --- lib/python/Screens/Standby.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/python') diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py index 88367cf7..a7819268 100644 --- a/lib/python/Screens/Standby.py +++ b/lib/python/Screens/Standby.py @@ -5,7 +5,7 @@ from Components.AVSwitch import AVSwitch from enigma import eDVBVolumecontrol, eDBoxLCD, eServiceReference from Components.Sources.Clock import Clock -inStandby = False +inStandby = None class Standby(Screen): def Power(self): @@ -63,12 +63,11 @@ class Standby(Screen): def __onShow(self): global inStandby - inStandby = True + inStandby = self def __onHide(self): global inStandby - inStandby = False - + inStandby = None class StandbySummary(Screen): skin = """ -- cgit v1.2.3