From 0f6b51bd496ee13589ef0fe5c966487dfcaf0737 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 7 May 2025 20:48:37 -0400 Subject: [PATCH] Minor UI fixes --- src/bin/auracite/Main.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/auracite/Main.qml b/src/bin/auracite/Main.qml index 1d2a52b..13d5cca 100644 --- a/src/bin/auracite/Main.qml +++ b/src/bin/auracite/Main.qml @@ -29,6 +29,8 @@ Kirigami.ApplicationWindow { globalToolBarStyle: Kirigami.ApplicationHeaderStyle.None header: ColumnLayout { + spacing: 0 + Kirigami.Separator { Layout.fillWidth: true } @@ -93,7 +95,7 @@ Kirigami.ApplicationWindow { id: aboutButton text: i18nc("@action:button Application settings", "Settings") icon.name: "settings-configure" - onClicked: applicationWindow().pageStack.push(Qt.createComponent("org.kde.kirigamiaddons.formcard", "AboutPage")) + onClicked: applicationWindow().pageStack.layers.push(Qt.createComponent("org.kde.kirigamiaddons.formcard", "AboutPage")) } } } @@ -129,4 +131,4 @@ Kirigami.ApplicationWindow { root.lastArchiveFile = path; } } -} \ No newline at end of file +}