From be89362fdde05206fb14528403b46c42a36a15ff Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 17 Jan 2026 11:45:45 -0500 Subject: [PATCH] Fix left padding for "Rooms" label in the room list This now emulates the default Kirigami heading behavior now, with the correct amount of padding. --- src/rooms/ExploreComponent.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rooms/ExploreComponent.qml b/src/rooms/ExploreComponent.qml index 57fad97fe..260b37b47 100644 --- a/src/rooms/ExploreComponent.qml +++ b/src/rooms/ExploreComponent.qml @@ -26,6 +26,8 @@ RowLayout { Kirigami.Heading { Layout.fillWidth: true + // Roughly equivalent to what Kirigami does for its built-in headings + Layout.leftMargin: Kirigami.Units.gridUnit - Kirigami.Units.mediumSpacing visible: !root.collapsed text: i18nc("@title", "Rooms") }