Skip to content

Commit

Permalink
TV: Only unmute audio when increasing the volume.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall committed Sep 29, 2011
1 parent 2063783 commit d66b794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -7776,7 +7776,7 @@ void TV::ChangeVolume(PlayerContext *ctx, bool up)
return;
}

if (ctx->player->IsMuted())
if (ctx->player->IsMuted() && up)
ToggleMute(ctx);

uint curvol = ctx->player->AdjustVolume((up) ? +2 : -2);
Expand Down

0 comments on commit d66b794

Please sign in to comment.