X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b58a0fa7cab89937586e2d08d79274fab3f14edc..32027c3eaa6b04ce081640ef89a73a93081aea85:/lib/python/Screens/Standby.py diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py index 0401cd90..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 = """ @@ -122,6 +121,7 @@ class TryQuitMainloop(MessageBox): rec_time = self.session.nav.RecordTimer.getNextRecordingTime() if rec_time > 0 and (rec_time - time()) < 360: self.initTimeout(360) # wait for next starting timer + self.startTimer() else: self.close(True) # immediate shutdown elif event == iRecordableService.evStart: