fix pluginlist width
[enigma2.git] / lib / python / Components / PluginList.py
index 93edf5ba11cf767d4ba232767436cd2438717dcf..22db1ad2a69f27132f334b77c456e725d17d19b5 100644 (file)
@@ -18,8 +18,8 @@ RT_VALIGN_BOTTOM = 16
 
 def PluginEntryComponent(picture, name, desc = "Plugin"):
        res = [ None ]
-       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 5, 200, 25, 0, RT_HALIGN_LEFT , name))
-       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 26, 200, 17, 1, RT_HALIGN_LEFT , desc))
+       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 5, 300, 25, 0, RT_HALIGN_LEFT , name))
+       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 26, 300, 17, 1, RT_HALIGN_LEFT , desc))
        png = loadPNG(picture)
        if png == None:
                png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "/plugin.png"))