aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-04-13 23:00:47 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-04-13 23:00:47 +0000
commit2a8ecd871020fdd668cf5500460e5a6e7851b4b0 (patch)
tree304d3f4dfbcee92f33cc6923afc8f39763b16b0a /lib/python/Components/PluginList.py
parent87ea9af33d190bb2be90ce9c35b5e1bcf6388411 (diff)
downloadenigma2-2a8ecd871020fdd668cf5500460e5a6e7851b4b0.tar.gz
enigma2-2a8ecd871020fdd668cf5500460e5a6e7851b4b0.zip
png cleanup by nemesis, source changes.
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 538cb029..b13567ea 100644
--- a/lib/python/Components/PluginList.py
+++ b/lib/python/Components/PluginList.py
@@ -13,7 +13,7 @@ def PluginEntryComponent(plugin):
res.append(MultiContentEntryText(pos=(120, 26), size=(320, 17), font=1, text=plugin.description))
if plugin.icon is None:
- png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "plugin.png"))
+ png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/plugin.png"))
else:
png = plugin.icon
res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 5), size=(100, 40), png = png))
@@ -35,7 +35,7 @@ def PluginDownloadComponent(plugin, name):
res.append(MultiContentEntryText(pos=(120, 26), size=(320, 17), font=1, text=plugin.description))
if plugin.icon is None:
- png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "plugin.png"))
+ png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/plugin.png"))
else:
png = plugin.icon
res.append(MultiContentEntryPixmapAlphaTest(pos=(10, 0), size=(100, 50), png = png))