X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/549ed3c87c4d3fe093472aa199ca6742c1f3654f..703e28ce14566d6093d98feca0c96a0468936747:/lib/python/Components/ServiceList.py diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py index 2cef35c1..2b80c225 100644 --- a/lib/python/Components/ServiceList.py +++ b/lib/python/Components/ServiceList.py @@ -25,12 +25,18 @@ class ServiceList(HTMLComponent, GUIComponent): self.l.getCurrent(r) return r + def atBegin(self): + return self.instance.atBegin() + + def atEnd(self): + return self.instance.atEnd() + def moveUp(self): self.instance.moveSelection(self.instance.moveUp) def moveDown(self): self.instance.moveSelection(self.instance.moveDown) - + def moveToChar(self, char): # TODO fill with life print "Next char: " @@ -51,6 +57,7 @@ class ServiceList(HTMLComponent, GUIComponent): def GUIcreate(self, parent): self.instance = eListbox(parent) + self.instance.setWrapAround(True) self.instance.setContent(self.l) self.setMode(self.mode)