From: Andreas Monzner Date: Mon, 6 Feb 2006 12:43:16 +0000 (+0000) Subject: fix clipping X-Git-Tag: 2.6.0~4190 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7b5ed865cebb4e75fe3177b5bdb1375f01ec7aa6 fix clipping --- 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)