Skip to content

Commit

Permalink
Restore "Don't record" option for conflicting programs.
Browse files Browse the repository at this point in the history
As pointed out by George Nassas, it is sometimes convenient to set
conflicts to don't record to make it easier to find later conflicts.
  • Loading branch information
gigem committed Aug 6, 2013
1 parent 03a7667 commit cff300c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/programs/mythfrontend/schedulecommon.cpp
Expand Up @@ -355,7 +355,8 @@ void ScheduleCommon::EditRecording(ProgramInfo *pginfo)
recinfo.GetRecordingStatus() == rsOtherShowing))
{
if (recinfo.GetRecordingStatus() == rsWillRecord ||
recinfo.GetRecordingStatus() == rsOtherShowing)
recinfo.GetRecordingStatus() == rsOtherShowing ||
recinfo.GetRecordingStatus() == rsConflict)
menuPopup->AddButton(tr("Don't record this showing"),
qVariantFromValue(recinfo));

Expand Down

0 comments on commit cff300c

Please sign in to comment.