aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-10 16:02:03 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-10 16:02:03 +0000
commit5697c8db5f4c96eb1658e708911bf904eae7c268 (patch)
tree0c9da3a4b923f86525468a555ce8ea89249912e4
parent53a2c0881c4222135ac434305b5bc2e43cc14b5c (diff)
downloadenigma2-5697c8db5f4c96eb1658e708911bf904eae7c268.tar.gz
enigma2-5697c8db5f4c96eb1658e708911bf904eae7c268.zip
open EPGSelection screen from infobar by pressing the red key
-rw-r--r--data/keymap.xml6
-rw-r--r--lib/python/Screens/InfoBar.py2
2 files changed, 5 insertions, 3 deletions
diff --git a/data/keymap.xml b/data/keymap.xml
index 5c500cf0..71f4ef95 100644
--- a/data/keymap.xml
+++ b/data/keymap.xml
@@ -51,9 +51,11 @@
<map context="InfobarActions">
<key id="m" mapto="mainMenu" flags="mr" />
<key id="c" mapto="switchChannelDown" flags="mr" />
- <key id="r" mapto="instantRecord" flags="m" />
+<!-- <key id="r" mapto="instantRecord" flags="m" /> -->
+ <key id="r" mapto="showEPGList" flags="m" />
<key id="KEY_INFO" mapto="showEPGList" flags="m" />
- <key id="KEY_RED" mapto="instantRecord" flags="m" />
+<!-- <key id="KEY_RED" mapto="instantRecord" flags="m" /> -->
+ <key id="KEY_RED" mapto="showEPGList" flags="m" />
<key id="1" mapto="zapUp" flags="mr" />
<key id="2" mapto="zapDown" flags="mr" />
<key id="KEY_M" mapto="mainMenu" flags="mr" />
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 45b36d31..516d44c5 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -217,7 +217,7 @@ class InfoBar(Screen):
def showEPGList(self):
# TODO hier irgendwie EPGSelection benutzen und setRoot benutzen um nen service zu uebergeben
# self.session.nav.getCurrentlyPlayingServiceReference() sollte das wohl sein
- print "hier soll mal ne EPGList aufgehen"
+ self.session.open(EPGSelection)
def quit(self):
configfile.save()