X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/eaa8bc374ff5eca1bb3caf9517dc6772cae34dd6..60efa2472bcb43a1faaf5e41c7a7e2cd770776be:/lib/python/Components/SelectionList.py diff --git a/lib/python/Components/SelectionList.py b/lib/python/Components/SelectionList.py index 1500254a..6019fffa 100644 --- a/lib/python/Components/SelectionList.py +++ b/lib/python/Components/SelectionList.py @@ -19,12 +19,12 @@ class SelectionList(MenuList, GUIComponent): self.list = list self.setList(list) self.l.setFont(0, gFont("Regular", 20)) + self.l.setItemHeight(30) GUI_WIDGET = eListbox def postWidgetCreate(self, instance): instance.setContent(self.l) - instance.setItemHeight(30) def addSelection(self, description, value, index, selected = True): self.list.append(SelectionEntryComponent(description, value, index, selected))