From 9e90ac0412736f05a6d8879e4c5017cc2f4d4102 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 15 Nov 2024 21:53:24 -0500 Subject: [PATCH] Add margins to the room drawer header to match Kirigami Otherwise it sticks to the left of the drawer and looks kinda ugly. --- src/qml/RoomDrawer.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qml/RoomDrawer.qml b/src/qml/RoomDrawer.qml index a7ef6843f..7fca60322 100644 --- a/src/qml/RoomDrawer.qml +++ b/src/qml/RoomDrawer.qml @@ -99,8 +99,11 @@ Kirigami.OverlayDrawer { Layout.preferredHeight: pageStack.globalToolBar.preferredHeight contentItem: RowLayout { + spacing: 0 + Kirigami.Heading { Layout.fillWidth: true + Layout.leftMargin: Kirigami.Units.largeSpacing text: drawerItemLoader.item ? drawerItemLoader.item.title : "" }