png cleanup by nemesis, source changes.
[enigma2.git] / lib / python / Components / HelpMenuList.py
index b1a31b8bc030eb6847127def61fbfdd8b87d01c8..3d36e95838a902fc0929a4f69de05dd3b08cd831 100644 (file)
@@ -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
 
@@ -59,9 +63,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()