From: Felix Domke Date: Wed, 7 Nov 2007 01:30:28 +0000 (+0000) Subject: show 'disabled' for disabled timers, instead of 'done' X-Git-Tag: 2.6.0~1765 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/5add4e83e5a154da2c26016c600b9e20b5496529?hp=14b4c911f077639728fa51a5246739670ca62fdc show 'disabled' for disabled timers, instead of 'done' --- diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index 53442f50..d3c20eca 100644 --- a/lib/python/Components/TimerList.py +++ b/lib/python/Components/TimerList.py @@ -56,6 +56,9 @@ class TimerList(HTMLComponent, GUIComponent, object): else: state = _("done!") + if timer.disabled: + state = _("disabled") + res.append((eListboxPythonMultiContent.TYPE_TEXT, width-240, 50, 240, 20, 1, RT_HALIGN_RIGHT|RT_VALIGN_CENTER, state)) if timer.disabled: