diff options
Diffstat (limited to 'lib/python/Components/PluginList.py')
| -rw-r--r-- | lib/python/Components/PluginList.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/PluginList.py b/lib/python/Components/PluginList.py index 9dec041b..17fe1476 100644 --- a/lib/python/Components/PluginList.py +++ b/lib/python/Components/PluginList.py @@ -18,11 +18,11 @@ RT_VALIGN_BOTTOM = 16 def PluginEntryComponent(picture, name): res = [ None ] - res.append((80, 10, 200, 50, 0, RT_HALIGN_LEFT , name)) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 10, 200, 50, 0, RT_HALIGN_LEFT , name)) png = loadPNG(picture) if png == None: png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "/countries/missing.png")) - res.append((10, 5, 60, 40, png)) + res.append((eListboxPythonMultiContent.TYPE_PIXMAP, 10, 5, 60, 40, png)) return res |
