From ffa400414c1c279d72179942b8ebc544803549ea Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 25 Jan 2006 00:20:17 +0000 Subject: [PATCH] display correct action on the yellow button --- lib/python/Screens/TimerEdit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py index 263af69f..e12e29ae 100644 --- a/lib/python/Screens/TimerEdit.py +++ b/lib/python/Screens/TimerEdit.py @@ -66,9 +66,9 @@ class TimerEditList(Screen): def updateState(self): if self["timerlist"].getCurrent()[0].disabled: - self["key_yellow"].setText(_("disable")) - else: self["key_yellow"].setText(_("enable")) + else: + self["key_yellow"].setText(_("disable")) self["key_yellow"].instance.invalidate() def fillTimerList(self): -- 2.30.2