aboutsummaryrefslogtreecommitdiff
path: root/components.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-04-26 00:56:58 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-04-26 00:56:58 +0000
commit90685659d798869b84bb83758140cf37ea40dae7 (patch)
treec7a5a72fb03058b947cee86b7c497b9a95c2b768 /components.py
parent48158ec0bbc8e623febb4d04a54e2e435daf865e (diff)
downloadenigma2-90685659d798869b84bb83758140cf37ea40dae7.tar.gz
enigma2-90685659d798869b84bb83758140cf37ea40dae7.zip
added moveUp/moveDown to ServiceList
Diffstat (limited to 'components.py')
-rw-r--r--components.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/components.py b/components.py
index 6f19a623..93e4b07d 100644
--- a/components.py
+++ b/components.py
@@ -340,6 +340,12 @@ class ServiceList(HTMLComponent, GUIComponent):
r = eServiceReference()
self.l.getCurrent(r)
return r
+
+ def moveUp(self):
+ self.instance.moveSelection(self.instance.moveUp)
+
+ def moveDown(self):
+ self.instance.moveSelection(self.instance.moveDown)
def GUIcreate(self, parent, skindata):
self.instance = eListbox(parent)