aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/TimerList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-19 23:58:58 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-19 23:58:58 +0000
commitea9231ad7229f47ebf117a3b4894a9e4e7a3c40a (patch)
treec1c41afba1d73b43eca5f21421f150bc3b91be0f /lib/python/Components/TimerList.py
parent03660c34322e7cdb315bd6ed87cecc68d14214c8 (diff)
downloadenigma2-ea9231ad7229f47ebf117a3b4894a9e4e7a3c40a.tar.gz
enigma2-ea9231ad7229f47ebf117a3b4894a9e4e7a3c40a.zip
update scrollbar in timerlist when a entry is removed
Diffstat (limited to 'lib/python/Components/TimerList.py')
-rw-r--r--lib/python/Components/TimerList.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py
index d3c20eca..b1d9ba02 100644
--- a/lib/python/Components/TimerList.py
+++ b/lib/python/Components/TimerList.py
@@ -98,3 +98,7 @@ class TimerList(HTMLComponent, GUIComponent, object):
def invalidate(self):
self.l.invalidate()
+
+ def entryRemoved(self, idx):
+ self.l.entryRemoved(idx)
+