diff --git a/applet/contents/ui/ListItemBase.qml b/applet/contents/ui/ListItemBase.qml --- a/applet/contents/ui/ListItemBase.qml +++ b/applet/contents/ui/ListItemBase.qml @@ -172,10 +172,6 @@ Volume = value; Muted = value == 0; - if (type == "sink") { - playFeedback(Index); - } - if (!pressed) { updateTimer.restart(); } @@ -190,6 +186,10 @@ // whereas PA rejected the volume change and is // still at v15 (e.g.). updateTimer.restart(); + + if (type == "sink") { + playFeedback(Index); + } } }