X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/f52ee24fceb98af2fb62c7390f741639903ca58a..cf34bb57372b60d8e66cf5c21e9f73b8d0bc23b8:/lib/python/Components/HelpMenuList.py diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index b1a31b8b..25c9b8b6 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 @@ -30,7 +34,9 @@ class HelpMenuList(GUIComponent): break if flags & 8: # for long keypresses, prepend l_ into the key name. - name = ("l_" + name[0], name[1], name[2]) + name = (name[0], "long") + + print "name:", name entry.append( (actionmap, context, action, name ) ) entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 400, 28, 0, 0, help) ) @@ -59,9 +65,12 @@ class HelpMenuList(GUIComponent): def postWidgetCreate(self, instance): instance.setContent(self.l) - instance.selectionChanged.get().append(self.selectionChanged) + def preWidgetRemove(self, instance): + instance.setContent(None) + instance.selectionChanged.get().remove(self.selectionChanged) + def selectionChanged(self): for x in self.onSelChanged: x()