aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-08 22:47:02 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-08 22:47:02 +0000
commitb0b879fc60e616e2e79de61f277d174a57bbc01d (patch)
treeed568370ae9a157f6babb615b3c53e85a82f9d3e /lib/python/Components
parent713b210b4df4b4bf71dfdb7de0094631b1c92c91 (diff)
downloadenigma2-b0b879fc60e616e2e79de61f277d174a57bbc01d.tar.gz
enigma2-b0b879fc60e616e2e79de61f277d174a57bbc01d.zip
add description to timerlist
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/TimerList.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py
index 18c5cb13..793bed4c 100644
--- a/lib/python/Components/TimerList.py
+++ b/lib/python/Components/TimerList.py
@@ -25,9 +25,11 @@ RT_WRAP = 32
def TimerEntry(timer, processed):
res = [ timer ]
+
res.append((0, 0, 400, 30, 0, RT_HALIGN_LEFT, timer.service_ref.getServiceName()))
res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, "%s, %s" % FuzzyTime(timer.begin)))
-
+
+ res.append((200, 0, 200, 20, 1, RT_HALIGN_RIGHT, timer.description))
if processed:
res.append((200, 30, 200, 20, 1, RT_HALIGN_RIGHT, FuzzyTime(timer.end)[1]))
else: