X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/44de1893c8ce2c850863eab81af66205e02a069b..3f0b490f6b5c5a4d83c1e2c1238d2eb33ff25a57:/lib/python/Components/SelectionList.py diff --git a/lib/python/Components/SelectionList.py b/lib/python/Components/SelectionList.py index 2bc3e0f6..a4f1d71a 100644 --- a/lib/python/Components/SelectionList.py +++ b/lib/python/Components/SelectionList.py @@ -3,7 +3,7 @@ from Tools.Directories import resolveFilename, SCOPE_SKIN_IMAGE from enigma import eListboxPythonMultiContent, eListbox, gFont, RT_HALIGN_LEFT from Tools.LoadPixmap import LoadPixmap -selectionpng = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "selectioncross-fs8.png")) +selectionpng = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/icons/selectioncross.png")) def SelectionEntryComponent(description, value, index, selected): res = [ (description, value, index, selected) ] @@ -14,7 +14,7 @@ def SelectionEntryComponent(description, value, index, selected): class SelectionList(MenuList): def __init__(self, list = None, enableWrapAround = False): - MenuList.__init__(self, list or [], enableWrapAround, content = eListboxPythonMultiContent()) + MenuList.__init__(self, list or [], enableWrapAround, content = eListboxPythonMultiContent) self.l.setFont(0, gFont("Regular", 20)) self.l.setItemHeight(30)