Skip to content

Commit

Permalink
TV: Ensure the OSD status is updated when jumping chapter.
Browse files Browse the repository at this point in the history
and title and angle switches.
  • Loading branch information
Mark Kendall committed Jun 14, 2011
1 parent ec7d2ec commit 70862b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -5846,6 +5846,7 @@ void TV::DoJumpChapter(PlayerContext *ctx, int chapter)
info.text["description"] = tr("Jump Chapter");
info.text["title"] = tr("Searching");
UpdateOSDStatus(ctx, info, kOSDFunctionalType_Default, kOSDTimeout_Med);
SetUpdateOSDPosition(true);

ctx->LockDeletePlayer(__FILE__, __LINE__);
if (ctx->player)
Expand Down Expand Up @@ -5936,6 +5937,7 @@ void TV::DoSwitchTitle(PlayerContext *ctx, int title)
info.text["description"] = tr("Jump Title");
info.text["title"] = tr("Searching");
UpdateOSDStatus(ctx, info, kOSDFunctionalType_Default, kOSDTimeout_Med);
SetUpdateOSDPosition(true);

ctx->LockDeletePlayer(__FILE__, __LINE__);
if (ctx->player)
Expand All @@ -5957,6 +5959,7 @@ void TV::DoSwitchAngle(PlayerContext *ctx, int angle)
info.text["description"] = tr("Switch Angle");
info.text["title"] = tr("Switching");
UpdateOSDStatus(ctx, info, kOSDFunctionalType_Default, kOSDTimeout_Med);
SetUpdateOSDPosition(true);

ctx->LockDeletePlayer(__FILE__, __LINE__);
if (ctx->player)
Expand Down

0 comments on commit 70862b8

Please sign in to comment.