Ticket #9489: 9489_24_diff.patch

File 9489_24_diff.patch, 1.3 KB (added by airic37, 13 years ago)
  • mythtv/libs/libmythtv/tv_play.cpp

    diff --git a/mythtv/libs/libmythtv/tv_play.cpp b/mythtv/libs/libmythtv/tv_play.cpp
    index 8147f1f..7e10eba 100644
    a b void TV::FillOSDMenuNavigate(const PlayerContext *ctx, OSD *osd, 
    1029210292    TVState state     = ctx->GetState();
    1029310293    bool isdvd        = state == kState_WatchingDVD;
    1029410294    bool islivetv     = StateIsLiveTV(state);
    10295     bool isrecording  = state == kState_WatchingPreRecorded;
     10295    bool isrecorded   = state == kState_WatchingPreRecorded;
     10296    bool isrecording  = state == kState_WatchingRecording;
    1029610297    bool previouschan = false;
    1029710298    if (islivetv)
    1029810299    {
    void TV::FillOSDMenuNavigate(const PlayerContext *ctx, OSD *osd, 
    1030510306    }
    1030610307
    1030710308    bool show = isdvd || num_chapters || num_titles || previouschan ||
    10308                 isrecording || num_angles;
     10309                isrecording || num_angles || isrecorded;
    1030910310    if (category == "MAIN")
    1031010311    {
    1031110312        if (show)
    void TV::FillOSDMenuNavigate(const PlayerContext *ctx, OSD *osd, 
    1031810319    {
    1031910320        backaction = "MAIN";
    1032010321        currenttext = tr("Navigate");
    10321         if (isrecording)
     10322        if (isrecorded || isrecording)
    1032210323        {
    1032310324            osd->DialogAddButton(tr("Commercial Auto-Skip"),
    1032410325                                 "DIALOG_MENU_COMMSKIP_0",