whitespace fixup
authorFelix Domke <tmbinc@elitedvb.net>
Wed, 11 Jul 2007 13:31:10 +0000 (13:31 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Wed, 11 Jul 2007 13:31:10 +0000 (13:31 +0000)
lib/python/Components/HelpMenuList.py

index 7dc51fa..0cd2fd2 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]