From 8a3d610d221c6a91edde9dc386faf81c7bf169de Mon Sep 17 00:00:00 2001 From: ly-sec Date: Thu, 17 Jul 2025 17:06:54 +0200 Subject: [PATCH] Small fix for System.qml --- Widgets/Sidebar/Panel/System.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Widgets/Sidebar/Panel/System.qml b/Widgets/Sidebar/Panel/System.qml index 4965569..50d42be 100644 --- a/Widgets/Sidebar/Panel/System.qml +++ b/Widgets/Sidebar/Panel/System.qml @@ -114,8 +114,8 @@ Rectangle { width: 32 height: 32 radius: 16 - color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.error : "transparent" - border.color: Theme.error + color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.accentPrimary : "transparent" + border.color: Theme.accentPrimary border.width: 1 Text { @@ -123,7 +123,7 @@ Rectangle { text: "power_settings_new" font.family: "Material Symbols Outlined" font.pixelSize: 16 - color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.backgroundPrimary : Theme.error + color: systemButtonArea.containsMouse || systemButtonArea.pressed ? Theme.backgroundPrimary : Theme.accentPrimary } MouseArea {