aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Renderer
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/Renderer
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/Renderer')
-rw-r--r--lib/python/Components/Renderer/Listbox.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Components/Renderer/Listbox.py b/lib/python/Components/Renderer/Listbox.py
index 8e510b4c..7a895330 100644
--- a/lib/python/Components/Renderer/Listbox.py
+++ b/lib/python/Components/Renderer/Listbox.py
@@ -78,3 +78,7 @@ class Listbox(Renderer, object):
def changed(self, what):
self.content = self.source.content
+
+ def entry_changed(self, index):
+ if self.instance is not None:
+ self.instance.entryChanged(index)