aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/TimerList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-11-07 01:30:28 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-11-07 01:30:28 +0000
commit5add4e83e5a154da2c26016c600b9e20b5496529 (patch)
treef7bb8732dd9027ba17b253562b0c74f2c63f09db /lib/python/Components/TimerList.py
parent14b4c911f077639728fa51a5246739670ca62fdc (diff)
downloadenigma2-5add4e83e5a154da2c26016c600b9e20b5496529.tar.gz
enigma2-5add4e83e5a154da2c26016c600b9e20b5496529.zip
show 'disabled' for disabled timers, instead of 'done'
Diffstat (limited to 'lib/python/Components/TimerList.py')
-rw-r--r--lib/python/Components/TimerList.py3
1 files changed, 3 insertions, 0 deletions
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: