From 52ecb4eaf7a62b25084fc6ba34893a731786b24c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 18 Jul 2026 10:51:10 -0700 Subject: [PATCH] Equalize bar status icon spacing --- shell/Commons/Style.qml | 2 +- shell/Ui/BarIndicator.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/Commons/Style.qml b/shell/Commons/Style.qml index 11fb7d73..32a78f49 100644 --- a/shell/Commons/Style.qml +++ b/shell/Commons/Style.qml @@ -344,7 +344,7 @@ QtObject { readonly property int iconSlot: root.barToken("icon-slot", 27) readonly property int iconCanvas: root.barToken("icon-canvas", 16) readonly property int iconFont: root.barToken("icon-font", 13) - readonly property int statusSlot: root.barToken("status-slot", 18) + readonly property int statusSlot: root.barToken("status-slot", 21) } function refresh() { diff --git a/shell/Ui/BarIndicator.qml b/shell/Ui/BarIndicator.qml index c0c313b3..67709e1d 100644 --- a/shell/Ui/BarIndicator.qml +++ b/shell/Ui/BarIndicator.qml @@ -46,6 +46,6 @@ BarIconButton { fontSize: Style.font.caption horizontalMargin: 5 verticalPadding: 5 - fixedWidth: -1 - fixedHeight: -1 + fixedWidth: vertical ? -1 : Style.bar.statusSlot + fixedHeight: vertical ? Style.bar.statusSlot : -1 }