aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ServiceList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-19 12:05:48 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-19 12:05:48 +0000
commit1b1b733e65f6683aa3887e63f832b74f76b4d5fd (patch)
tree783a71ba775dd46814667570155962281cb0691f /lib/python/Components/ServiceList.py
parent4b7d05196b422208f9de957fa892be790f0a8de3 (diff)
downloadenigma2-1b1b733e65f6683aa3887e63f832b74f76b4d5fd.tar.gz
enigma2-1b1b733e65f6683aa3887e63f832b74f76b4d5fd.zip
fix service/movie remove (hold cursor position when possible)
change titlebar of channelselection when edit mode or move mode is enabled
Diffstat (limited to 'lib/python/Components/ServiceList.py')
-rw-r--r--lib/python/Components/ServiceList.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py
index d008c475..d24f956a 100644
--- a/lib/python/Components/ServiceList.py
+++ b/lib/python/Components/ServiceList.py
@@ -43,6 +43,12 @@ class ServiceList(HTMLComponent, GUIComponent):
self.instance.moveSelectionTo(index)
print "Moving to character " + str(char)
+ def moveToIndex(self, index):
+ self.instance.moveSelectionTo(index)
+
+ def getCurrentIndex(self):
+ return self.instance.getCurrentIndex()
+
def GUIcreate(self, parent):
self.instance = eListbox(parent)
self.instance.setContent(self.l)