Skip to content

Commit

Permalink
Display the Auto commercial skip option for in-progress recordings.
Browse files Browse the repository at this point in the history
(cherry picked from commit 5d94418)
  • Loading branch information
Mark Kendall committed Feb 8, 2011
1 parent 1a69c92 commit 6dd5e4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10292,7 +10292,8 @@ void TV::FillOSDMenuNavigate(const PlayerContext *ctx, OSD *osd,
TVState state = ctx->GetState();
bool isdvd = state == kState_WatchingDVD;
bool islivetv = StateIsLiveTV(state);
bool isrecording = state == kState_WatchingPreRecorded;
bool isrecording = state == kState_WatchingPreRecorded ||
state == kState_WatchingRecording;
bool previouschan = false;
if (islivetv)
{
Expand Down

0 comments on commit 6dd5e4b

Please sign in to comment.