aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/StringList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:41:57 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:41:57 +0100
commitdce87891f204f8e1f7151c4a3ba00b9dd048e795 (patch)
treef90c93d185e897b73307a0ead1ee88fa75e02453 /lib/python/Components/Converter/StringList.py
parent979cdde152f5998de6593f1d3b6998bb224d5c97 (diff)
downloadenigma2-dce87891f204f8e1f7151c4a3ba00b9dd048e795.tar.gz
enigma2-dce87891f204f8e1f7151c4a3ba00b9dd048e795.zip
- While recording, collect startcodes and save them into ".sc"-files
- this allows finding iframes for fast forward/reverse more easily - when in fast forward, strictly just output good (=complete iframes) data (this might break dm7025, we will fix this later) - draw smaller, fixed-size bar in position gauge
Diffstat (limited to 'lib/python/Components/Converter/StringList.py')
-rw-r--r--lib/python/Components/Converter/StringList.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/Components/Converter/StringList.py b/lib/python/Components/Converter/StringList.py
index c9488db0..08794b34 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
@@ -43,3 +46,6 @@ class StringList(Converter):
self.master.index = index
index = property(getIndex, setIndex)
+
+ def entry_changed(self, index):
+ self.downstream_elements.entry_changed(index) \ No newline at end of file