From eb94aa617ad0054edf3e3a1f5ff5a3ddb434bba8 Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Fri, 24 Oct 2025 18:59:09 +0200 Subject: [PATCH] AudioCard: make both sliders have the same width Enforce visual consistency by making both output and input sliders have the same width regardless of the devices names --- Modules/ControlCenter/Cards/AudioCard.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/ControlCenter/Cards/AudioCard.qml b/Modules/ControlCenter/Cards/AudioCard.qml index 7996ce4b..95d33803 100644 --- a/Modules/ControlCenter/Cards/AudioCard.qml +++ b/Modules/ControlCenter/Cards/AudioCard.qml @@ -58,6 +58,7 @@ NBox { ColumnLayout { spacing: Style.marginXXS Layout.fillWidth: true + Layout.preferredWidth: 0 opacity: AudioService.sink ? 1.0 : 0.5 enabled: AudioService.sink @@ -109,6 +110,7 @@ NBox { ColumnLayout { spacing: Style.marginXXS Layout.fillWidth: true + Layout.preferredWidth: 0 opacity: AudioService.source ? 1.0 : 0.5 enabled: AudioService.source