AddChat: move create room tab to last position

This commit is contained in:
miruka 2019-11-07 11:11:09 -04:00
parent 11c8af7c19
commit 8c111904a5

View File

@ -20,15 +20,15 @@ HPage {
TabBar { TabBar {
id: tabBar id: tabBar
position: TabBar.Header position: TabBar.Header
currentIndex: 1 currentIndex: 2
Layout.fillWidth: true Layout.fillWidth: true
Repeater { Repeater {
model: [ model: [
qsTr("Find someone"), qsTr("Find someone"),
qsTr("Create room"),
qsTr("Join room"), qsTr("Join room"),
qsTr("Create room"),
] ]
HTabButton { HTabButton {
@ -45,13 +45,12 @@ HPage {
Layout.fillWidth: true Layout.fillWidth: true
Item {}
Item {} Item {}
CreateRoom { CreateRoom {
id: createRoom id: createRoom
} }
Item {}
} }
} }
} }