From 815e388a73b8e5ba121228d359eeb0bba1fee7f8 Mon Sep 17 00:00:00 2001 From: "Chris \"Koying\" Browet" Date: Sun, 19 Apr 2015 19:24:46 +0200 Subject: FIX: passthrough volume warning no longer showed --- xbmc/Application.cpp | 6 ++---- 1 file 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; } -- cgit v1.2.3