From: Andreas Monzner Date: Sat, 28 Oct 2006 15:08:46 +0000 (+0000) Subject: revert non working "goto standby" after timerevent code (needs some work in X-Git-Tag: 2.6.0~2825 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/3087ea89b68dd764aaf363ab5ad2cbf5d27d1429 revert non working "goto standby" after timerevent code (needs some work in other files) --- diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index fe44d9a3..1c83bdb6 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -84,7 +84,7 @@ class TimerEntry(Screen, ConfigListScreen): day[weekday] = 1 self.timerentry_justplay = ConfigSelection(choices = [("zap", _("zap")), ("record", _("record"))], default = {0: "record", 1: "record"}[justplay]) - self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("standby", _("go to standby")), ("deepstandby", _("go to deep standby"))], default = afterevent) + self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("deepstandby", _("go to deep standby"))], default = afterevent) self.timerentry_type = ConfigSelection(choices = [("once",_("once")), ("repeated", _("repeated"))], default = type) self.timerentry_name = ConfigText(default = self.timer.name, fixed_size = False) self.timerentry_description = ConfigText(default = self.timer.description, fixed_size = False)