From 4ee9407013b1a5c8bbb666669df910d6f4e08062 Mon Sep 17 00:00:00 2001 From: "Dr.Best" Date: Sun, 21 Jun 2009 19:26:40 +0000 Subject: [PATCH] RC Keys "<" and ">" did not work in EPG List -> fixed --- quickbutton/src/plugin.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quickbutton/src/plugin.py b/quickbutton/src/plugin.py index afe3344..5c1cc78 100644 --- a/quickbutton/src/plugin.py +++ b/quickbutton/src/plugin.py @@ -119,8 +119,9 @@ def startPlugin(self,pname): no_plugin = True if pname != _("Nothing"): if pname == _("EPG List"): - from Screens.EpgSelection import EPGSelection - self.session.open(EPGSelection, self.session.nav.getCurrentlyPlayingServiceReference()) + from Screens.InfoBarGenerics import InfoBarEPG + if isinstance(self, InfoBarEPG): + self.openSingleServiceEPG() no_plugin = False elif pname == _("MediaPlayer"): try: # falls es nicht installiert ist -- 2.7.4