allow extensions on blue button for movie player (usable on dm8000 rc)
authorFelix Domke <tmbinc@elitedvb.net>
Thu, 12 Feb 2009 15:48:39 +0000 (16:48 +0100)
committerFelix Domke <tmbinc@elitedvb.net>
Thu, 12 Feb 2009 15:48:39 +0000 (16:48 +0100)
lib/python/Screens/InfoBar.py
lib/python/Screens/InfoBarGenerics.py

index 01b77f3..baa9e5f 100644 (file)
@@ -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()
index 9e0e50a..3404e3f 100644 (file)
@@ -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))