From f1bb1ec82dfa1ea4787eee38fdc9b90cfa3261ba Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Sat, 21 Feb 2026 21:36:31 +0100 Subject: [PATCH] osd audio muted color fix --- Modules/Osd/Content.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Osd/Content.qml b/Modules/Osd/Content.qml index 3991d55..bddc67f 100644 --- a/Modules/Osd/Content.qml +++ b/Modules/Osd/Content.qml @@ -47,6 +47,7 @@ Item { icon: Icons.getVolumeIcon(value, root.muted) value: root.volume to: Config.services.maxVolume + color: Audio.muted ? DynamicColors.palette.m3error : DynamicColors.palette.m3secondary onMoved: Audio.setVolume(value) } }