remove new found flags when do a automatic scan and "clear before scan" was
[enigma2.git] / lib / python / Components / HelpMenuList.py
index 0cd2fd2f6f516b692a9dbcb22653400cbf861688..07bbdd2a9a1f2127f51be98ce4cbecc956e073ac 100644 (file)
@@ -1,4 +1,4 @@
-from GUIComponent import *
+from GUIComponent import GUIComponent
 
 from enigma import eListboxPythonMultiContent, eListbox, gFont
 
@@ -21,13 +21,21 @@ 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
 
                                for n in buttons:
-                                       name = getKeyDescription(n)
+                                       (name, flags) = (getKeyDescription(n[0]), n[1])
                                        if name is not None:
                                                break
 
+                               if flags & 8: # for long keypresses, prepend l_ into the key name.
+                                       name = ("l_" + name[0], name[1], name[2])
+
                                entry.append( (actionmap, context, action, name ) )
                                entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 400, 28, 0, 0, help) )
 
@@ -35,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...