X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0e61797c03c26a8b004dff187a4e26fc6afb26e2..d4969fafffd49c4791f56141d57281a83007a29b:/lib/python/Components/HelpMenuList.py diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index e7806bdc..07bbdd2a 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -1,4 +1,4 @@ -from GUIComponent import * +from GUIComponent import GUIComponent from enigma import eListboxPythonMultiContent, eListbox, gFont @@ -21,6 +21,10 @@ class HelpMenuList(GUIComponent): buttons = queryKeyBinding(context, action) + # do not display entries which are not accessible from keys + if not len(buttons): + continue + name = None flags = 0 @@ -39,8 +43,8 @@ class HelpMenuList(GUIComponent): self.l.setList(l) - self.l.setFont(0, gFont("Regular", 26)) - self.l.setItemHeight(42) + self.l.setFont(0, gFont("Regular", 24)) + self.l.setItemHeight(38) def ok(self): # a list entry has a "private" tuple as first entry...