diff options
author | Chris Browet <koying@semperpax.com> | 2015-04-19 19:30:43 +0200 |
---|---|---|
committer | Chris Browet <koying@semperpax.com> | 2015-04-19 19:30:43 +0200 |
commit | 22e1b4954104420d566af078eaa7c3fe2044cc4c (patch) | |
tree | 2519f7d4ab4aceea0f1ae4261a6301e276329a1c | |
parent | f2c26a1dcba9801a6b368dc57aeb35a7dbf9c9d6 (diff) | |
parent | 815e388a73b8e5ba121228d359eeb0bba1fee7f8 (diff) |
Merge pull request #6981 from koying/quickPR
FIX: passthrough volume warning no longer showed (fixes #15925)
-rw-r--r-- | xbmc/Application.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index 135b4668b8..d71a778175 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -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; } |