From 78df416bc7fb3461dd5c6662aef3aaac98d47216 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Fri, 19 Sep 2025 11:24:04 -0400 Subject: [PATCH] KeepAwake: fix border onHover --- Modules/Bar/Widgets/KeepAwake.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Bar/Widgets/KeepAwake.qml b/Modules/Bar/Widgets/KeepAwake.qml index 9c4626f4..a6d2b0f7 100644 --- a/Modules/Bar/Widgets/KeepAwake.qml +++ b/Modules/Bar/Widgets/KeepAwake.qml @@ -18,5 +18,6 @@ NIconButton { colorBg: IdleInhibitorService.isInhibited ? Color.mPrimary : (Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent) colorFg: IdleInhibitorService.isInhibited ? Color.mOnPrimary : Color.mOnSurface colorBorder: Color.transparent + colorBorderHover: Color.transparent onClicked: IdleInhibitorService.manualToggle() }