diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-02-06 12:43:16 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-02-06 12:43:16 +0000 |
| commit | 7b5ed865cebb4e75fe3177b5bdb1375f01ec7aa6 (patch) | |
| tree | e6ec43560ecc3ce887658a5c8fc8729076a53ea6 /lib/python/Components/HelpMenuList.py | |
| parent | 3183aaba07375fc42e5d1a37bacf17a7c8631e94 (diff) | |
| download | enigma2-7b5ed865cebb4e75fe3177b5bdb1375f01ec7aa6.tar.gz enigma2-7b5ed865cebb4e75fe3177b5bdb1375f01ec7aa6.zip | |
fix clipping
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 c7035cb9..521496b6 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( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 36, 0, 0, help) ) - entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 40, 200, 20, 1, 0, buttonstring) ) + entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 550, 36, 0, 0, help) ) + entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 40, 550, 20, 1, 0, buttonstring) ) l.append(entry) |
