aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-27 09:33:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-06-27 09:33:42 +0000
commit25b529dd304871c705456047049dd29935f1ffe3 (patch)
treecdc08bbbb574ef05f27d35d22fefea974490bd77 /lib/python/Components/PluginList.py
parent0383b38c654919cf8a1c08e44795804d98568923 (diff)
downloadenigma2-25b529dd304871c705456047049dd29935f1ffe3.tar.gz
enigma2-25b529dd304871c705456047049dd29935f1ffe3.zip
add some skin fixes/extensions made by Nemesis (thanks for this)
Diffstat (limited to 'lib/python/Components/PluginList.py')
-rw-r--r--lib/python/Components/PluginList.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/python/Components/PluginList.py b/lib/python/Components/PluginList.py
index 7220f0a9..9b9cfea8 100644
--- a/lib/python/Components/PluginList.py
+++ b/lib/python/Components/PluginList.py
@@ -11,36 +11,36 @@ from enigma import *
def PluginEntryComponent(plugin):
res = [ plugin ]
- res.append(MultiContentEntryText(pos=(80, 5), size=(300, 25), font=0, text=plugin.name))
- res.append(MultiContentEntryText(pos=(80, 26), size=(300, 17), font=1, text=plugin.description))
+ res.append(MultiContentEntryText(pos=(120, 5), size=(320, 25), font=0, text=plugin.name))
+ res.append(MultiContentEntryText(pos=(120, 26), size=(320, 17), font=1, text=plugin.description))
if plugin.icon is None:
png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "plugin.png"))
else:
png = plugin.icon
- res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 5), size=(60, 40), png = png))
+ res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 5), size=(100, 40), png = png))
return res
def PluginCategoryComponent(name, png):
res = [ name ]
- res.append(MultiContentEntryText(pos=(80, 5), size=(300, 25), font=0, text=name))
- res.append(MultiContentEntryPixmapAlphaTest(pos=(0, 0), size=(60, 50), png = png))
+ res.append(MultiContentEntryText(pos=(120, 5), size=(320, 25), font=0, text=name))
+ res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 0), size=(100, 50), png = png))
return res
def PluginDownloadComponent(plugin, name):
res = [ plugin ]
- res.append(MultiContentEntryText(pos=(80, 5), size=(300, 25), font=0, text=name))
- res.append(MultiContentEntryText(pos=(80, 26), size=(300, 17), font=1, text=plugin.description))
+ res.append(MultiContentEntryText(pos=(120, 5), size=(320, 25), font=0, text=name))
+ res.append(MultiContentEntryText(pos=(120, 26), size=(320, 17), font=1, text=plugin.description))
if plugin.icon is None:
png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "plugin.png"))
else:
png = plugin.icon
- res.append(MultiContentEntryPixmapAlphaTest(pos=(0, 0), size=(60, 50), png = png))
+ res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 0), size=(100, 50), png = png))
return res