X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/f7c13b8fcc4373f972387a0e7928658b818392b9..85f5c84f1e3e4d22fb1939751d39de03877b93d8:/lib/python/Components/HelpMenuList.py diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index 58335c08..c7035cb9 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -37,15 +37,15 @@ 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) self.l.setList(l) - self.l.setFont(0, gFont("Arial", 36)) - self.l.setFont(1, gFont("Arial", 18)) + self.l.setFont(0, gFont("Regular", 36)) + self.l.setFont(1, gFont("Regular", 18)) def GUIcreate(self, parent): self.instance = eListbox(parent)