From 7b5ed865cebb4e75fe3177b5bdb1375f01ec7aa6 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 6 Feb 2006 12:43:16 +0000 Subject: [PATCH 1/1] fix clipping --- lib/python/Components/HelpMenuList.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index c7035cb..521496b 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) -- 2.7.4