X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FConverter%2FStringList.py;h=d424d39f804028a1b052ec3869665ac8b97c282e;hb=4510fa62a33b31fec442fd0d77eb682d93ebf7e6;hp=acbba3443ccaca4f868b2cc19b2dc7db70f6f0e1;hpb=a2897a03034c3a2c176df4fdd2f7f5d32d830270;p=vuplus_dvbapp diff --git a/lib/python/Components/Converter/StringList.py b/lib/python/Components/Converter/StringList.py index acbba34..d424d39 100644 --- a/lib/python/Components/Converter/StringList.py +++ b/lib/python/Components/Converter/StringList.py @@ -19,8 +19,11 @@ class StringList(Converter): def selectionChanged(self, index): self.source.selectionChanged(index) # update all non-master targets + print "changed selection in listbox!" for x in self.downstream_elements: + print "downstream element", x if x is not self.master: + print "is not master, so update to index", index x.index = index @cached