aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/HelpMenuList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-08-07 19:03:42 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-08-07 19:03:42 +0000
commitc2107d5c3e3c72a68f14cb4adceb86556fb4ea14 (patch)
tree05a18df7eaf94321e0b5fb91974201346852ce26 /lib/python/Components/HelpMenuList.py
parentdff14ec53d9370bac2cd28a07d0c4a51f4e16835 (diff)
downloadenigma2-c2107d5c3e3c72a68f14cb4adceb86556fb4ea14.tar.gz
enigma2-c2107d5c3e3c72a68f14cb4adceb86556fb4ea14.zip
fix help when no help available
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
-rw-r--r--lib/python/Components/HelpMenuList.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py
index 103727a7..48802f7b 100644
--- a/lib/python/Components/HelpMenuList.py
+++ b/lib/python/Components/HelpMenuList.py
@@ -39,14 +39,16 @@ class HelpMenuList(GUIComponent):
def ok(self):
# a list entry has a "private" tuple as first entry...
- l = self.l.getCurrentSelection()[0]
-
+ l = self.getCurrent()
+ if l is None:
+ return
# ...containing (Actionmap, Context, Action, keydata).
# we returns this tuple to the callback.
self.callback(l[0], l[1], l[2])
def getCurrent(self):
- return self.l.getCurrentSelection()[0]
+ sel = self.l.getCurrentSelection()
+ return sel and sel[0]
GUI_WIDGET = eListbox