aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ChoiceList.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/ChoiceList.py
parent87ea9af33d190bb2be90ce9c35b5e1bcf6388411 (diff)
downloadenigma2-2a8ecd871020fdd668cf5500460e5a6e7851b4b0.tar.gz
enigma2-2a8ecd871020fdd668cf5500460e5a6e7851b4b0.zip
png cleanup by nemesis, source changes.
Diffstat (limited to 'lib/python/Components/ChoiceList.py')
-rw-r--r--lib/python/Components/ChoiceList.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/ChoiceList.py b/lib/python/Components/ChoiceList.py
index 2a7a0904..16778749 100644
--- a/lib/python/Components/ChoiceList.py
+++ b/lib/python/Components/ChoiceList.py
@@ -8,11 +8,11 @@ def ChoiceEntryComponent(key, text):
if text[0] == "--":
res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 00, 800, 25, 0, RT_HALIGN_LEFT, "-"*200))
else:
- res.append((eListboxPythonMultiContent.TYPE_TEXT, 32, 00, 800, 25, 0, RT_HALIGN_LEFT, text[0]))
+ res.append((eListboxPythonMultiContent.TYPE_TEXT, 45, 00, 800, 25, 0, RT_HALIGN_LEFT, text[0]))
- png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "key_" + key + "-fs8.png"))
+ png = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/buttons/key_" + key + ".png"))
if png is not None:
- res.append((eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, 0, 0, 30, 20, png))
+ res.append((eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, 5, 0, 35, 25, png))
return res