diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-02 11:43:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-02 11:43:42 +0000 |
| commit | a194b290cad5bfd10126b9a225b08e2c58c5c990 (patch) | |
| tree | 834024873ab0f83c0a7a330b670e2b31fd1c44dd /lib/python/Components/HelpMenuList.py | |
| parent | df21108d272341745a001f781a3b8bd628f4ace6 (diff) | |
| download | enigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.tar.gz enigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.zip | |
add type to python multi content entrys
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
| -rw-r--r-- | lib/python/Components/HelpMenuList.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index 8905944a..c7035cb9 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -37,8 +37,8 @@ class HelpMenuList(GUIComponent): if not first: buttonstring = "You can also press " + buttonstring + "." - entry.append( (0, 0, 200, 36, 0, 0, help) ) - entry.append( (0, 40, 200, 20, 1, 0, buttonstring) ) + entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 36, 0, 0, help) ) + entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 40, 200, 20, 1, 0, buttonstring) ) l.append(entry) |
