aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-07-11 14:36:11 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-07-11 14:36:11 +0000
commitd2a2c01f25fe43be323357b041b610f7a3e46142 (patch)
treef4547ccafc496c3155aa665d08556dcc1ce3b698 /lib/python
parent2080cf6c4aa2d89b1f08c28968724be5dc71cf09 (diff)
downloadenigma2-d2a2c01f25fe43be323357b041b610f7a3e46142.tar.gz
enigma2-d2a2c01f25fe43be323357b041b610f7a3e46142.zip
fix help entries without a key
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/HelpMenu.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/python/Screens/HelpMenu.py b/lib/python/Screens/HelpMenu.py
index fb11d8f8..7bd52122 100644
--- a/lib/python/Screens/HelpMenu.py
+++ b/lib/python/Screens/HelpMenu.py
@@ -32,16 +32,17 @@ class HelpMenu(Screen):
}, -1)
def SelectionChanged(self):
- selection = self["list"].getCurrent()[3]
+ selection = self["list"].getCurrent()
+ selection = selection and selection[3]
arrow = self["arrowup"]
sh_arrow = self["sh_arrowup"]
- if selection[0][:3] == "sh_":
+ if selection and selection[0][:3] == "sh_":
sh_arrow.show()
else:
sh_arrow.hide()
- if selection[0][:2] == "l_":
+ if selection and selection[0][:2] == "l_":
self["long_key"].setText(_("Long Keypress"))
else:
self["long_key"].setText("")