aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/List.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-16 01:43:15 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-16 01:43:15 +0100
commitd4fb39b22f791a7b30e3b3e2077d7410495bb9bb (patch)
treef5a6998337f6d7177df9947caaed07390a4e89d2 /lib/python/Components/Sources/List.py
parente3a6f808e43832cefc57e9a6025c9aad09212516 (diff)
downloadenigma2-d4fb39b22f791a7b30e3b3e2077d7410495bb9bb.tar.gz
enigma2-d4fb39b22f791a7b30e3b3e2077d7410495bb9bb.zip
update all non-master listboxes when any listbox changes
Diffstat (limited to 'lib/python/Components/Sources/List.py')
-rw-r--r--lib/python/Components/Sources/List.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py
index 23b53957..dbe442d1 100644
--- a/lib/python/Components/Sources/List.py
+++ b/lib/python/Components/Sources/List.py
@@ -40,6 +40,11 @@ to generate HTML."""
if self.disable_callbacks:
return
+ # update all non-master targets
+ for x in self.downstream_elements:
+ if x is not self.master:
+ x.index = index
+
for x in self.onSelectionChanged:
x()