Skip to content

Commit

Permalink
Merge pull request #6981 from koying/quickPR
Browse files Browse the repository at this point in the history
FIX: passthrough volume warning no longer showed (fixes #15925)
  • Loading branch information
koying committed Apr 19, 2015
2 parents f2c26a1 + 815e388 commit 22e1b49
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions xbmc/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2427,11 +2427,9 @@ bool CApplication::OnAction(const CAction &action)
else
volume = action.GetAmount() * step;
if (volume != m_volumeLevel)
{
SetVolume(volume, false);
// show visual feedback of volume change...
ShowVolumeBar(&action);
}
// show visual feedback of volume...
ShowVolumeBar(&action);
}
return true;
}
Expand Down

0 comments on commit 22e1b49

Please sign in to comment.