diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-11-02 01:44:00 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-11-02 01:44:00 +0000 |
| commit | eb833738539b930a156b403114976e906638c21d (patch) | |
| tree | db9d8cfe79873b2f56f7e9936d643848b6643fd1 /lib/python/Screens/TimerEntry.py | |
| parent | e41fd414cd5e70abee0a8e5b9d2ffc4007c5b754 (diff) | |
| download | enigma2-eb833738539b930a156b403114976e906638c21d.tar.gz enigma2-eb833738539b930a156b403114976e906638c21d.zip | |
fix zap timer
Diffstat (limited to 'lib/python/Screens/TimerEntry.py')
| -rw-r--r-- | lib/python/Screens/TimerEntry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index 1c83bdb6..2a572714 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -83,7 +83,7 @@ class TimerEntry(Screen, ConfigListScreen): weekday = (int(time.strftime("%w", time.localtime(self.timer.begin))) - 1) % 7 day[weekday] = 1 - self.timerentry_justplay = ConfigSelection(choices = [("zap", _("zap")), ("record", _("record"))], default = {0: "record", 1: "record"}[justplay]) + self.timerentry_justplay = ConfigSelection(choices = [("zap", _("zap")), ("record", _("record"))], default = {0: "record", 1: "zap"}[justplay]) 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) |
