whitespace fixup
[enigma2.git] / lib / python / Components / HelpMenuList.py
index 7dc51faeed6fc68fb2be8a6c3c00b5b91e2163f9..0cd2fd2f6f516b692a9dbcb22653400cbf861688 100644 (file)
@@ -13,16 +13,16 @@ class HelpMenuList(GUIComponent):
                self.onSelChanged = [ ]
                self.l = eListboxPythonMultiContent()
                self.callback = callback
-               
+
                l = [ ]
                for (actionmap, context, actions) in list:
                        for (action, help) in actions:
                                entry = [ ]
-                               
+
                                buttons = queryKeyBinding(context, action)
 
                                name = None
-                               
+
                                for n in buttons:
                                        name = getKeyDescription(n)
                                        if name is not None:
@@ -30,14 +30,14 @@ class HelpMenuList(GUIComponent):
 
                                entry.append( (actionmap, context, action, name ) )
                                entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 400, 28, 0, 0, help) )
-                               
+
                                l.append(entry)
-               
+
                self.l.setList(l)
-               
+
                self.l.setFont(0, gFont("Regular", 26))
                self.l.setItemHeight(42)
-       
+
        def ok(self):
                # a list entry has a "private" tuple as first entry...
                l = self.getCurrent()
@@ -46,7 +46,7 @@ class HelpMenuList(GUIComponent):
                # ...containing (Actionmap, Context, Action, keydata).
                # we returns this tuple to the callback.
                self.callback(l[0], l[1], l[2])
-       
+
        def getCurrent(self):
                sel = self.l.getCurrentSelection()
                return sel and sel[0]