aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-20 22:54:11 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-20 22:54:11 +0100
commit60fc8afd61923e8bbf949d04b73491862390b65f (patch)
tree05ff17087afa1279e1d2b6e80cd8371541aabb4f
parent075bcb25231dc0e39314f3bb1bbd553f6535446d (diff)
downloadenigma2-60fc8afd61923e8bbf949d04b73491862390b65f.tar.gz
enigma2-60fc8afd61923e8bbf949d04b73491862390b65f.zip
fix keymap associations with INFO button
-rw-r--r--data/keymap.xml2
-rw-r--r--lib/python/Screens/InfoBarGenerics.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/keymap.xml b/data/keymap.xml
index 6b8b583d..0a0dc867 100644
--- a/data/keymap.xml
+++ b/data/keymap.xml
@@ -77,7 +77,7 @@
</map>
<map context="InfobarEPGActions">
- <key id="KEY_INFO" mapto="showEventView" flags="b" />
+ <key id="KEY_INFO" mapto="showEventInfo" flags="b" />
<key id="KEY_INFO" mapto="showEventInfoPlugin" flags="l" />
</map>
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index eb79c74e..b923340c 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -403,7 +403,7 @@ class InfoBarEPG:
self.eventView = None
self["EPGActions"] = HelpableActionMap(self, "InfobarEPGActions",
{
- "showEventView": (self.openEventView, _("show EPG...")),
+ "showEventInfo": (self.openEventView, _("show EPG...")),
"showEventInfoPlugin": (self.showEventInfoPlugins, _("show single service EPG...")),
"showInfobarOrEpgWhenInfobarAlreadyVisible": self.showEventInfoWhenNotVisible,
})