From 8c111904a55a92938c317e4cf1f29dc0801331bd Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 7 Nov 2019 11:11:09 -0400 Subject: [PATCH] AddChat: move create room tab to last position --- src/qml/Pages/AddChat/AddChat.qml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/qml/Pages/AddChat/AddChat.qml b/src/qml/Pages/AddChat/AddChat.qml index 925ee38d..d96d1739 100644 --- a/src/qml/Pages/AddChat/AddChat.qml +++ b/src/qml/Pages/AddChat/AddChat.qml @@ -20,15 +20,15 @@ HPage { TabBar { id: tabBar position: TabBar.Header - currentIndex: 1 + currentIndex: 2 Layout.fillWidth: true Repeater { model: [ qsTr("Find someone"), - qsTr("Create room"), qsTr("Join room"), + qsTr("Create room"), ] HTabButton { @@ -45,13 +45,12 @@ HPage { Layout.fillWidth: true + Item {} Item {} CreateRoom { id: createRoom } - - Item {} } } }