From d8db49b1ebcfd2a886be1536bbbc12d214e185a5 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 17 Feb 2006 01:46:56 +0000 Subject: add zapping history.. useable with < > buttons --- lib/python/Screens/InfoBarGenerics.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/python/Screens/InfoBarGenerics.py') 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) -- cgit v1.2.3