fixes content overlay in add chat tabs

This commit is contained in:
gridtime 2024-01-26 15:29:26 +01:00
parent 6e6b54c4c8
commit bd1bc59859
No known key found for this signature in database
GPG Key ID: FB6ACC7A1C9182F8

View File

@ -26,8 +26,17 @@ HPage {
HTabButton { text: qsTr("Create group") } HTabButton { text: qsTr("Create group") }
} }
DirectChat { userId: page.userId } DirectChat {
JoinRoom { userId: page.userId } userId: page.userId
CreateRoom { userId: page.userId } implicitWidth: 0
}
JoinRoom {
userId: page.userId
implicitWidth: 0
}
CreateRoom {
userId: page.userId
implicitWidth: 0
}
} }
} }