From d3906f0c0959004848926d3aa233510db77d8dd3 Mon Sep 17 00:00:00 2001 From: lucy Date: Sat, 14 Feb 2026 12:44:21 +0100 Subject: [PATCH] fix spacing --- modules/bar/Bar.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/bar/Bar.qml b/modules/bar/Bar.qml index 1a52b9a..55a4aa7 100644 --- a/modules/bar/Bar.qml +++ b/modules/bar/Bar.qml @@ -35,11 +35,11 @@ Variants { RowLayout { id: leftStuff - anchors.margins: Settings.config.floating ? 0 : Settings.config.barHeight / 4 spacing: 10 anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter Workspaces { + Layout.leftMargin: 5 property var screen: root.modelData } Title {} @@ -54,13 +54,13 @@ Variants { RowLayout { id: rightStuff - anchors.margins: Settings.config.barHeight / 4 spacing: 10 - clip: true anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter SysTray {} - StatusIcons {} + StatusIcons { + Layout.rightMargin: 5 + } } } }