From 3b523edecac429b0039a9d5a7bcde4cae5e0268e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 15 May 2026 19:22:58 +0200 Subject: [PATCH] Fix indicator spacing --- .../omarchy-shell/plugins/bar/widgets/weatherFlyout.qml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml b/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml index d2b0c297..e9f17c82 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/widgets/weatherFlyout.qml @@ -28,7 +28,7 @@ Item { readonly property string reportHumidity: reportFields.length > 5 ? String(reportFields[5] || "").trim() : "" visible: label !== "" - implicitWidth: button.implicitWidth + implicitWidth: button.implicitWidth + 8 implicitHeight: button.implicitHeight function refresh() { @@ -71,7 +71,10 @@ Item { Common.WidgetButton { id: button - anchors.fill: parent + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + width: implicitWidth + height: implicitHeight bar: root.bar text: root.label active: root.klass === "active"