diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-02-17 18:55:26 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-02-17 18:55:26 +0000 |
| commit | dd6b7236b87a06c700ee8e3d7686230ea8e13159 (patch) | |
| tree | 7d100cfe5507c052da4192376cb9029877ba688c /lib | |
| parent | 3d5dd25c62114875146d4d4e09a58060789546c7 (diff) | |
| download | enigma2-dd6b7236b87a06c700ee8e3d7686230ea8e13159.tar.gz enigma2-dd6b7236b87a06c700ee8e3d7686230ea8e13159.zip | |
zaptimers now do wakeup the box from standby and deepstandby
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Screens/Standby.py | 7 |
1 files changed, 3 insertions, 4 deletions
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 = """ |
