aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ChoiceList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-04-12 19:50:53 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-04-12 19:50:53 +0000
commitead18eb53880ecff8c41fa2e2db7ae87e2b950de (patch)
treeb48af59c16a7080aa37682627c578c9f19674384 /lib/python/Components/ChoiceList.py
parentdaa673f3b6bc40c4d1251335e233ffb1956f1722 (diff)
downloadenigma2-ead18eb53880ecff8c41fa2e2db7ae87e2b950de.tar.gz
enigma2-ead18eb53880ecff8c41fa2e2db7ae87e2b950de.zip
follow itemHeight changes
Diffstat (limited to 'lib/python/Components/ChoiceList.py')
-rw-r--r--lib/python/Components/ChoiceList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/ChoiceList.py b/lib/python/Components/ChoiceList.py
index a2070c7d..a7a5e483 100644
--- a/lib/python/Components/ChoiceList.py
+++ b/lib/python/Components/ChoiceList.py
@@ -24,11 +24,11 @@ class ChoiceList(MenuList, HTMLComponent, GUIComponent):
self.list = list
self.l.setList(list)
self.l.setFont(0, gFont("Regular", 20))
+ self.l.setItemHeight(25)
self.selection = selection
GUI_WIDGET = eListbox
def postWidgetCreate(self, instance):
instance.setContent(self.l)
- instance.setItemHeight(25)
self.moveToIndex(self.selection)