diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-11-07 01:30:28 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-11-07 01:30:28 +0000 |
| commit | 5add4e83e5a154da2c26016c600b9e20b5496529 (patch) | |
| tree | f7bb8732dd9027ba17b253562b0c74f2c63f09db /lib/python | |
| parent | 14b4c911f077639728fa51a5246739670ca62fdc (diff) | |
| download | enigma2-5add4e83e5a154da2c26016c600b9e20b5496529.tar.gz enigma2-5add4e83e5a154da2c26016c600b9e20b5496529.zip | |
show 'disabled' for disabled timers, instead of 'done'
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/TimerList.py | 3 |
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: |
