diff options
Diffstat (limited to 'lib/python/Components/SelectionList.py')
| -rw-r--r-- | lib/python/Components/SelectionList.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/SelectionList.py b/lib/python/Components/SelectionList.py index a64f46b4..6b02e5bc 100644 --- a/lib/python/Components/SelectionList.py +++ b/lib/python/Components/SelectionList.py @@ -13,11 +13,11 @@ def SelectionEntryComponent(description, value, index, selected): return res class SelectionList(MenuList, GUIComponent): - def __init__(self, list = []): + def __init__(self, list = None): GUIComponent.__init__(self) self.l = eListboxPythonMultiContent() - self.list = list - self.setList(list) + self.list = list or [] + self.setList(self.list) self.l.setFont(0, gFont("Regular", 20)) self.l.setItemHeight(30) |
