X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ff9c3a5173a77c05e97f89219d7071238208f660..76fe69e113637a200aafdc2d6dede772706e4b09:/lib/python/Components/SelectionList.py 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)