X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d7d95c7b2435ab1819bc23eff5ff53aaac2b9ff1..b44cb0f9a39ba6c319dc5f89439e52c93f3a0f23:/lib/python/Components/TimerList.py diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index dbc0cfc7..078210bd 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): @@ -56,4 +56,6 @@ class TimerList(HTMLComponent, GUIComponent): self.instance.setContent(None) self.instance = None + def invalidate(self): + self.l.invalidate()