X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=SleepTimer.py;h=221e8f0b29422826edeb3368fcf24bdd752d7a6d;hp=f9aae1aaa60792ffedef10bb0af8e06bd8e93393;hb=9330a6e050bad23c25469545e605c017f73f121b;hpb=40abde85c0fbd8c10fdc7f8894c128cb8acf05ee diff --git a/SleepTimer.py b/SleepTimer.py index f9aae1a..221e8f0 100644 --- a/SleepTimer.py +++ b/SleepTimer.py @@ -9,6 +9,10 @@ from Components.config import config, ConfigYesNo, ConfigSelection, ConfigSubsec from Screens.MessageBox import MessageBox import Screens.Standby +config.SleepTimer = ConfigSubsection() +config.SleepTimer.ask = ConfigYesNo(default = True) +config.SleepTimer.action = ConfigSelection(default = "shutdown", choices = [("shutdown", _("shutdown")), ("standby", _("standby"))]) + class SleepTimerEntry(timer.TimerEntry): def __init__(self, begin): timer.TimerEntry.__init__(self, int(begin), int(begin)) @@ -48,9 +52,6 @@ class SleepTimerEntry(timer.TimerEntry): class SleepTimer(timer.Timer): def __init__(self): - config.SleepTimer = ConfigSubsection() - config.SleepTimer.ask = ConfigYesNo(default = True) - config.SleepTimer.action = ConfigSelection(default = "shutdown", choices = [("shutdown", _("shutdown")), ("standby", _("standby"))]) timer.Timer.__init__(self) self.defaultTime = 30