From 5817feb93f4986819fdbff6c2a62ce67b36b1b44 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Tue, 11 Aug 2026 15:30:11 +0100 Subject: [PATCH] Mute all audio on right-click (#6708) Previously, right-clicking the audio icon muted only the output. Whereas the switch at the top of the panel mutes all audio (inputs and outputs). Pairing the right-click to the switch seems a bit less confusing, and also matches the behaviour with other panels (e.g. Bluetooth, Tailscale, etc). --- shell/plugins/panels/audio/Panel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/plugins/panels/audio/Panel.qml b/shell/plugins/panels/audio/Panel.qml index 1fd01d58..f8a86c6f 100644 --- a/shell/plugins/panels/audio/Panel.qml +++ b/shell/plugins/panels/audio/Panel.qml @@ -633,7 +633,7 @@ Panel { bar: root.bar text: root.outputIcon() onPressed: function(b) { - if (b === Qt.RightButton) root.toggleOutputMute() + if (b === Qt.RightButton) root.toggleAllMuted() else root.toggle() }