diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 13:31:10 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 13:31:10 +0000 |
| commit | 65a75b9655aa81b1a0c3e6ead3513af5b028cf80 (patch) | |
| tree | 5b14654c4023317d8b273ba7b7f57d3d87520916 /lib/python/Components/HelpMenuList.py | |
| parent | 5c647467dcacf02c52304186df62f03d21a3f094 (diff) | |
| download | enigma2-65a75b9655aa81b1a0c3e6ead3513af5b028cf80.tar.gz enigma2-65a75b9655aa81b1a0c3e6ead3513af5b028cf80.zip | |
whitespace fixup
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
| -rw-r--r-- | lib/python/Components/HelpMenuList.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index 7dc51fae..0cd2fd2f 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -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] |
