diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-12 18:24:07 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-12 18:24:07 +0000 |
| commit | fdd708fdeb5ddbb23b471a4a309d7f107a3c67b3 (patch) | |
| tree | cb715fdf68065d95dd0c32bbc6c6609975c0551e /lib/python/Components | |
| parent | 285290ffcdf531d2481b199541a402560b1e129d (diff) | |
| download | enigma2-fdd708fdeb5ddbb23b471a4a309d7f107a3c67b3.tar.gz enigma2-fdd708fdeb5ddbb23b471a4a309d7f107a3c67b3.zip | |
- add "ok" to the configMenu's actionlist again
- timer edit is now functional (not for repeated timers) but we have a redraw-problem again
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/TimerList.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index dbc0cfc7..b9769691 100644 --- a/lib/python/Components/TimerList.py +++ b/lib/python/Components/TimerList.py @@ -29,11 +29,11 @@ def TimerEntryComponent(timer, processed): 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)) + res.append((300, 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])) + res.append((300, 30, 200, 20, 1, RT_HALIGN_RIGHT, FuzzyTime(timer.end)[1])) else: - res.append((200, 30, 200, 20, 1, RT_HALIGN_RIGHT, "done")) + res.append((300, 30, 200, 20, 1, RT_HALIGN_RIGHT, "done")) return res class TimerList(HTMLComponent, GUIComponent): |
