From: Felix Domke Date: Thu, 12 Feb 2009 15:48:39 +0000 (+0100) Subject: allow extensions on blue button for movie player (usable on dm8000 rc) X-Git-Tag: 2.6.0~445 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1bd22cc97199c878255925ef2a9032881acef470 allow extensions on blue button for movie player (usable on dm8000 rc) --- diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 01b77f3f..baa9e5f2 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -126,7 +126,7 @@ class MoviePlayer(InfoBarBase, InfoBarShowHide, \ InfoBarSeek, InfoBarShowMovies, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications, InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView, InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, Screen, InfoBarTeletextPlugin, - InfoBarServiceErrorPopupSupport): + InfoBarServiceErrorPopupSupport, InfobarExtensions): ENABLE_RESUME_SUPPORT = True ALLOW_SUSPEND = True @@ -144,7 +144,7 @@ class MoviePlayer(InfoBarBase, InfoBarShowHide, \ InfoBarAudioSelection, InfoBarNotifications, InfoBarSimpleEventView, \ InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, \ InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, \ - InfoBarTeletextPlugin, InfoBarServiceErrorPopupSupport: + InfoBarTeletextPlugin, InfoBarServiceErrorPopupSupport, InfobarExtensions: x.__init__(self) self.lastservice = self.session.nav.getCurrentlyPlayingServiceReference() diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 9e0e50af..3404e3f9 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1221,7 +1221,7 @@ class InfoBarExtensions: self["InstantExtensionsActions"] = HelpableActionMap(self, "InfobarExtensions", { "extensions": (self.showExtensionSelection, _("view extensions...")), - }) + }, 1) # lower priority def addExtension(self, extension, key = None, type = EXTENSION_SINGLE): self.list.append((type, extension, key))