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
  • Loading branch information
Mark Kendall committed Feb 8, 2011
1 parent 70857ed commit 5d94418
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -10249,7 +10249,8 @@ void TV::FillOSDMenuNavigate(const PlayerContext *ctx, OSD *osd,
bool isbd = ctx->buffer && ctx->buffer->IsBD() && bool isbd = ctx->buffer && ctx->buffer->IsBD() &&
ctx->buffer->BD()->IsHDMVNavigation(); ctx->buffer->BD()->IsHDMVNavigation();
bool islivetv = StateIsLiveTV(state); bool islivetv = StateIsLiveTV(state);
bool isrecording = state == kState_WatchingPreRecorded; bool isrecording = state == kState_WatchingPreRecorded ||
state == kState_WatchingRecording;
bool previouschan = false; bool previouschan = false;
if (islivetv) if (islivetv)
{ {
Expand Down

0 comments on commit 5d94418

Please sign in to comment.