From 6ec58cb73afac1de860af53ff559fe889806e1d0 Mon Sep 17 00:00:00 2001 From: zach Date: Thu, 13 Aug 2026 21:26:48 +0200 Subject: [PATCH] remove debug statelayer --- Modules/Clock.qml | 2 +- Modules/SysTray/Widgets/AudioWidget.qml | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Modules/Clock.qml b/Modules/Clock.qml index 88cca11..f96fe16 100644 --- a/Modules/Clock.qml +++ b/Modules/Clock.qml @@ -24,7 +24,7 @@ CustomRect { anchors.centerIn: parent color: root.visibilities.dashboard ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface - font: Config.appearance.font.family.mono // qmllint disable incompatible-type + font: Config.appearance.font.family.mono text: Time.dateStr Behavior on color { diff --git a/Modules/SysTray/Widgets/AudioWidget.qml b/Modules/SysTray/Widgets/AudioWidget.qml index db32743..6f6661b 100644 --- a/Modules/SysTray/Widgets/AudioWidget.qml +++ b/Modules/SysTray/Widgets/AudioWidget.qml @@ -29,10 +29,4 @@ MaterialIcon { Anim { } } - - StateLayer { - onClicked: { - Config.bar.border = (Config.bar.border === 4 ? 8 : 4); - } - } }