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.
This commit is contained in:
Joshua Goins
2026-01-17 11:45:45 -05:00
parent e53c84d30c
commit be89362fdd

View File

@@ -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")
}