From e3d9ab567921802600be036aac4b8c16bb519d03 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sun, 14 Sep 2025 07:21:32 -0400 Subject: [PATCH 1/2] NPill better naming so files stay closeby --- Widgets/NPill.qml | 4 ++-- Widgets/{NHorizontalPill.qml => NPillHorizontal.qml} | 0 Widgets/{NVerticalPill.qml => NPillVertical.qml} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Widgets/{NHorizontalPill.qml => NPillHorizontal.qml} (100%) rename Widgets/{NVerticalPill.qml => NPillVertical.qml} (100%) diff --git a/Widgets/NPill.qml b/Widgets/NPill.qml index 50bf6ad..d417203 100644 --- a/Widgets/NPill.qml +++ b/Widgets/NPill.qml @@ -40,7 +40,7 @@ Item { Component { id: verticalPillComponent - NVerticalPill { + NPillVertical { icon: root.icon text: root.text tooltipText: root.tooltipText @@ -65,7 +65,7 @@ Item { Component { id: horizontalPillComponent - NHorizontalPill { + NPillHorizontal { icon: root.icon text: root.text tooltipText: root.tooltipText diff --git a/Widgets/NHorizontalPill.qml b/Widgets/NPillHorizontal.qml similarity index 100% rename from Widgets/NHorizontalPill.qml rename to Widgets/NPillHorizontal.qml diff --git a/Widgets/NVerticalPill.qml b/Widgets/NPillVertical.qml similarity index 100% rename from Widgets/NVerticalPill.qml rename to Widgets/NPillVertical.qml From e6372a2473841c0a1b3da96240c464edff3dee33 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sun, 14 Sep 2025 07:21:49 -0400 Subject: [PATCH 2/2] VerticalBar: smaller spacing and margin --- Modules/Bar/Bar.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Modules/Bar/Bar.qml b/Modules/Bar/Bar.qml index 872746c..09bf572 100644 --- a/Modules/Bar/Bar.qml +++ b/Modules/Bar/Bar.qml @@ -93,10 +93,10 @@ Variants { // Top section (left widgets) Column { - spacing: Style.marginM * root.scaling + spacing: Style.marginS * root.scaling anchors.horizontalCenter: parent.horizontalCenter anchors.top: parent.top - anchors.topMargin: Style.marginL * root.scaling + anchors.topMargin: Style.marginM * root.scaling width: parent.width Repeater { @@ -118,7 +118,7 @@ Variants { // Center section (center widgets) Column { - spacing: Style.marginM * root.scaling + spacing: Style.marginS * root.scaling anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter width: parent.width @@ -142,10 +142,10 @@ Variants { // Bottom section (right widgets) Column { - spacing: Style.marginM * root.scaling + spacing: Style.marginS * root.scaling anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom - anchors.bottomMargin: Style.marginL * root.scaling + anchors.bottomMargin: Style.marginM * root.scaling width: parent.width Repeater {