aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginList.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-11 16:14:25 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-11 16:14:25 +0000
commitd1df9c9abf767fff6cfb073ef560d5b89b93610c (patch)
tree2e6169c8df6fbfe9254d2492b1a69aa6b462974a /lib/python/Components/PluginList.py
parentf1ab9e53dff461945393a1a8a06fd927db0610fd (diff)
downloadenigma2-d1df9c9abf767fff6cfb073ef560d5b89b93610c.tar.gz
enigma2-d1df9c9abf767fff6cfb073ef560d5b89b93610c.zip
fix pluginlist width
Diffstat (limited to 'lib/python/Components/PluginList.py')
-rw-r--r--lib/python/Components/PluginList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/PluginList.py b/lib/python/Components/PluginList.py
index 93edf5ba..22db1ad2 100644
--- a/lib/python/Components/PluginList.py
+++ b/lib/python/Components/PluginList.py
@@ -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"))