aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-02 11:43:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-02 11:43:42 +0000
commita194b290cad5bfd10126b9a225b08e2c58c5c990 (patch)
tree834024873ab0f83c0a7a330b670e2b31fd1c44dd /lib/python/Components/PluginList.py
parentdf21108d272341745a001f781a3b8bd628f4ace6 (diff)
downloadenigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.tar.gz
enigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.zip
add type to python multi content entrys
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 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