From: Felix Domke Date: Wed, 24 Jun 2009 21:47:22 +0000 (+0200) Subject: also provide showInfobarOrEpgWhenInfobarAlreadyVisible in InfoBarSimpleEventView X-Git-Tag: 2.6.0~232 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/5b3739ccccddb795ca7e75e60f202cbce5c78144 also provide showInfobarOrEpgWhenInfobarAlreadyVisible in InfoBarSimpleEventView --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 7f90b976..bfeb394b 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