From a929f7bca387683c1ffd44d78f2e0f0ce5671e00 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 28 Dec 2020 10:53:08 +0100 Subject: [PATCH] Move Header Collapse Button to the Right Fix #191 --- imports/NeoChat/Page/RoomListPage.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/imports/NeoChat/Page/RoomListPage.qml b/imports/NeoChat/Page/RoomListPage.qml index 612278b12..c13c53df4 100644 --- a/imports/NeoChat/Page/RoomListPage.qml +++ b/imports/NeoChat/Page/RoomListPage.qml @@ -77,17 +77,17 @@ Kirigami.ScrollablePage { } contentItem: RowLayout { implicitHeight: categoryName.implicitHeight - Kirigami.Icon { - source: roomListModel.categoryVisible(section) ? "go-up" : "go-down" - implicitHeight: Kirigami.Units.iconSizes.small - implicitWidth: Kirigami.Units.iconSizes.small - } Kirigami.Heading { id: categoryName level: 3 text: roomListModel.categoryName(section) Layout.fillWidth: true } + Kirigami.Icon { + source: roomListModel.categoryVisible(section) ? "go-up" : "go-down" + implicitHeight: Kirigami.Units.iconSizes.small + implicitWidth: Kirigami.Units.iconSizes.small + } } }