aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ChoiceList.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-05-02 21:16:54 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-05-02 21:16:54 +0000
commit84e19567791d6117f4d5103b001d0b05cd231d38 (patch)
tree59cb64ad8937a718b3fddabc4cecfe8ac5b3e360 /lib/python/Components/ChoiceList.py
parent3411cfcf8b85bd043b5cac9d28a927ae72a4717f (diff)
downloadenigma2-84e19567791d6117f4d5103b001d0b05cd231d38.tar.gz
enigma2-84e19567791d6117f4d5103b001d0b05cd231d38.zip
replace subservice selection screen with ChoiceBox screen
Diffstat (limited to 'lib/python/Components/ChoiceList.py')
-rw-r--r--lib/python/Components/ChoiceList.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Components/ChoiceList.py b/lib/python/Components/ChoiceList.py
index b1514535..ca58ecd6 100644
--- a/lib/python/Components/ChoiceList.py
+++ b/lib/python/Components/ChoiceList.py
@@ -27,15 +27,17 @@ def ChoiceEntryComponent(key, text):
return res
class ChoiceList(MenuList, HTMLComponent, GUIComponent):
- def __init__(self, list):
+ def __init__(self, list, selection = 0):
GUIComponent.__init__(self)
self.l = eListboxPythonMultiContent()
self.list = list
self.l.setList(list)
self.l.setFont(0, gFont("Regular", 20))
+ self.selection = selection
GUI_WIDGET = eListbox
def postWidgetCreate(self, instance):
instance.setContent(self.l)
instance.setItemHeight(25)
+ self.moveToIndex(self.selection)