From 5b3739ccccddb795ca7e75e60f202cbce5c78144 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Wed, 24 Jun 2009 23:47:22 +0200 Subject: [PATCH] also provide showInfobarOrEpgWhenInfobarAlreadyVisible in InfoBarSimpleEventView --- lib/python/Screens/InfoBarGenerics.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 7f90b97..bfeb394 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -366,8 +366,16 @@ class InfoBarSimpleEventView: self["EPGActions"] = HelpableActionMap(self, "InfobarEPGActions", { "showEventInfo": (self.openEventView, _("show event details")), + "showInfobarOrEpgWhenInfobarAlreadyVisible": self.showEventInfoWhenNotVisible, }) + def showEventInfoWhenNotVisible(self): + if self.shown: + self.openEventView() + else: + self.toggleShow() + return 1 + def openEventView(self): epglist = [ ] self.epglist = epglist -- 2.7.4