Ticket #6167: 6167-v2.diff

File 6167-v2.diff, 1.2 KB (added by Roo, 17 years ago)

Don't show delete when promtping to exit LiveTV

  • libs/libmythtv/tv_play.cpp

     
    40814081            if (ctx->HasNVP() && (12 & db_playback_exit_prompt))
    40824082            {
    40834083                PromptStopWatchingRecording(ctx);
     4084                return handled;
    40844085            }
    40854086            else
    40864087            {
     
    1069910700    else
    1070010701        options += tr("Exit %1").arg(videotype);
    1070110702
    10702     if (IsDeleteAllowed(ctx))
     10703    if (!StateIsLiveTV(GetState(ctx)) && IsDeleteAllowed(ctx))
    1070310704        options += tr("Delete this recording");
    1070410705
    1070510706    options += tr("Keep watching");
  • libs/libmythtv/osd.cpp

     
    21342134    if (container)
    21352135    {
    21362136        VERBOSE(VB_IMPORTANT, LOC_ERR +
    2137                 QString("NewDialogBox, dialog containter for "
     2137                QString("NewDialogBox, dialog container for "
    21382138                        "'%1' already exists.").arg(name));
    21392139        return;
    21402140    }