aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBarGenerics.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-02-17 01:46:56 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-02-17 01:46:56 +0000
commitd8db49b1ebcfd2a886be1536bbbc12d214e185a5 (patch)
tree68561ca88841b7949c7637f43b112aa83b2afb55 /lib/python/Screens/InfoBarGenerics.py
parent064515cf022f9ec6197c355b259960f5cb5d731e (diff)
downloadenigma2-d8db49b1ebcfd2a886be1536bbbc12d214e185a5.tar.gz
enigma2-d8db49b1ebcfd2a886be1536bbbc12d214e185a5.zip
add zapping history.. useable with < > buttons
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 0cc610a1..2f368537 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -278,8 +278,16 @@ class InfoBarChannelSelection:
"switchChannelDown": self.switchChannelDown,
"zapUp": (self.zapUp, _("next channel")),
"zapDown": (self.zapDown, _("previous channel")),
+ "historyBack": (self.historyBack, _("previous channel in history")),
+ "historyNext": (self.historyNext, _("next channel in history"))
})
+ def historyBack(self):
+ self.servicelist.historyBack()
+
+ def historyNext(self):
+ self.servicelist.historyNext()
+
def switchChannelUp(self):
self.servicelist.moveUp()
self.session.execDialog(self.servicelist)