X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/df7d9f3578c68b22c95ab9daa23bd0fa168f6d11..a51752e73e737052dc0f2b731a387deef80e64af:/lib/python/Screens/HelpMenu.py diff --git a/lib/python/Screens/HelpMenu.py b/lib/python/Screens/HelpMenu.py index 06f0cfab..7bd52122 100644 --- a/lib/python/Screens/HelpMenu.py +++ b/lib/python/Screens/HelpMenu.py @@ -16,22 +16,36 @@ class HelpMenu(Screen): def __init__(self, session, list): Screen.__init__(self, session) self.onSelChanged = [ ] - self["list"] = HelpMenuList(list, self.close) self["list"].onSelChanged.append(self.SelectionChanged) - self["rc"] = Pixmap() self["arrowup"] = MovingPixmap() + self["arrowup"].hide() + self["sh_arrowup"] = Pixmap() + self["sh_arrowup"].hide() + self["long_key"] = Label("") self["actions"] = ActionMap(["WizardActions"], { "ok": self["list"].ok, "back": self.close, }, -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 and selection[0][:3] == "sh_": + sh_arrow.show() + else: + sh_arrow.hide() + + if selection and selection[0][:2] == "l_": + self["long_key"].setText(_("Long Keypress")) + else: + self["long_key"].setText("") if selection is None: arrow.hide()