aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorthedoc <thedoc@atom.(none)>2009-12-15 16:18:52 +0100
committerthedoc <thedoc@atom.(none)>2009-12-23 14:36:27 +0100
commita88994b2d0bab5d8a5d0b38b5a66f374372b0830 (patch)
tree9aed3b5856592f7897da9df4055f7bbb2e671412 /lib/python/Components
parentdc5f101d2790968876caee8bba4ce8ab9210aa2e (diff)
downloadenigma2-a88994b2d0bab5d8a5d0b38b5a66f374372b0830.tar.gz
enigma2-a88994b2d0bab5d8a5d0b38b5a66f374372b0830.zip
fixes bug #354
change MenuList to ChoiceList in ChannelContext and assign Blue button to PiP activation
Diffstat (limited to 'lib/python/Components')
-rwxr-xr-xlib/python/Components/ChoiceList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/ChoiceList.py b/lib/python/Components/ChoiceList.py
index 4700e9e6..33868d61 100755
--- a/lib/python/Components/ChoiceList.py
+++ b/lib/python/Components/ChoiceList.py
@@ -3,7 +3,7 @@ from Tools.Directories import SCOPE_CURRENT_SKIN, resolveFilename
from enigma import RT_HALIGN_LEFT, eListboxPythonMultiContent, gFont
from Tools.LoadPixmap import LoadPixmap
-def ChoiceEntryComponent(key, text):
+def ChoiceEntryComponent(key = "", text = ["--"]):
res = [ text ]
if text[0] == "--":
res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 00, 800, 25, 0, RT_HALIGN_LEFT, "-"*200))