From 9bc6479c9222e44faa146d7e972ca46d3e5235ad Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sat, 6 Sep 2025 18:34:44 -0400 Subject: [PATCH] NPill: for battery use a very light outline around the icon --- Widgets/NPill.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Widgets/NPill.qml b/Widgets/NPill.qml index 94719b3..794caa9 100644 --- a/Widgets/NPill.qml +++ b/Widgets/NPill.qml @@ -99,6 +99,8 @@ Item { // When forced shown, match pill background; otherwise use accent when hovered color: forceOpen ? pillColor : (showPill ? iconCircleColor : Color.mSurfaceVariant) anchors.verticalCenter: parent.verticalCenter + border.width: Math.max(1, Style.borderS * scaling) + border.color: forceOpen ? Qt.alpha(Color.mOutline, 0.5) : Color.transparent anchors.left: rightOpen ? parent.left : undefined anchors.right: rightOpen ? undefined : parent.right