Changeset 16112


Ignore:
Timestamp:
May 28, 2012, 3:40:56 PM (14 years ago)
Author:
obi
Message:

fix

Location:
ipk/source.sh4/swapplayers_mediacenter_1.0/var/swap/extensions/MediaCenter
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ipk/source.sh4/swapplayers_mediacenter_1.0/var/swap/extensions/MediaCenter/MC_FileListCover.py

    r16109 r16112  
    3636from Components.Console import Console
    3737from Screens.InfoBarGenerics import InfoBarSeek, InfoBarAudioSelection, InfoBarCueSheetSupport, InfoBarNotifications, \
    38         InfoBarShowHide, InfoBarServiceErrorPopupSupport, \
    39         InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, \
     38        InfoBarShowHide, InfoBarServiceErrorPopupSupport, InfoBarSecondInfobar, \
     39        InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, InfoBarResolutionSelection, \
    4040        InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, InfoBarTeletextPlugin
    4141import os
  • ipk/source.sh4/swapplayers_mediacenter_1.0/var/swap/extensions/MediaCenter/MC_PictureViewer.py

    r16109 r16112  
    44from Screens.ServiceInfo import ServiceInfoList, ServiceInfoListEntry
    55from Screens.InfoBarGenerics import InfoBarSeek, InfoBarAudioSelection, InfoBarCueSheetSupport, InfoBarNotifications, \
    6         InfoBarShowHide, InfoBarServiceErrorPopupSupport, \
    7         InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, \
     6        InfoBarShowHide, InfoBarServiceErrorPopupSupport, InfoBarSecondInfobar, \
     7        InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, InfoBarResolutionSelection, \
    88        InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, InfoBarTeletextPlugin
    99from Components.AVSwitch import AVSwitch
     
    14241424                self.session.open(MC_PicSetup, self.filelist)
    14251425                self.close()
    1426 class MC_PicView(Screen, InfoBarAspectSelection):
     1426
     1427class MC_PicView(Screen, InfoBarAspectSelection, InfoBarResolutionSelection):
    14271428        def __init__(self, session, filelist, pindex, path, startslide):
    14281429                self.debug = command('cat /var/etc/autostart/start-config | grep debug | cut -d = -f2')
  • ipk/source.sh4/swapplayers_mediacenter_1.0/var/swap/extensions/MediaCenter/MC_VideoPlayer.py

    r16109 r16112  
    2424from Screens.HelpMenu import HelpableScreen
    2525from Screens.InfoBarGenerics import InfoBarSeek, InfoBarAudioSelection, InfoBarCueSheetSupport, InfoBarNotifications, \
    26         InfoBarShowHide, InfoBarServiceErrorPopupSupport, \
    27         InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, \
     26        InfoBarShowHide, InfoBarServiceErrorPopupSupport, InfoBarSecondInfobar, \
     27        InfoBarPVRState, InfoBarSimpleEventView, InfoBarServiceNotifications, InfoBarResolutionSelection, \
    2828        InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, InfoBarTeletextPlugin
    2929from Screens.Screen import Screen
     
    21192119                global lastpath
    21202120                config.plugins.mc_playing.Enabled = ConfigYesNo(default=False)
     2121                config.SecondInfobar.Enabled = ConfigYesNo(default=True)
    21212122                if config.plugins.mc_vp_autoSleep.enabled.getValue() == True:
    21222123                        if self.debug != "off":
     
    27552756
    27562757class MoviePlayerObi(InfoBarShowHide, \
    2757                 InfoBarSeek, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications, InfoBarAspectSelection,
    2758                 InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView,
     2758                InfoBarSeek, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications, InfoBarAspectSelection, InfoBarSecondInfobar,
     2759                InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView, InfoBarResolutionSelection,
    27592760                InfoBarMoviePlayerSummarySupport, InfoBarSubtitleSupport, Screen, InfoBarTeletextPlugin,
    27602761                InfoBarServiceErrorPopupSupport):
     
    27672768                InfoBarAspectSelection.__init__(self)
    27682769                InfoBarAudioSelection.__init__(self)
     2770                InfoBarSecondInfobar.__init__(self)
    27692771                InfoBarSeek.__init__(self, actionmap = "MediaCenterSeekActions")
    27702772                self.debug = command('cat /var/etc/autostart/start-config | grep debug | cut -d = -f2')
Note: See TracChangeset for help on using the changeset viewer.