diff --git a/src/gui/Pages/AddChat/AddChat.qml b/src/gui/Pages/AddChat/AddChat.qml index fbfd1cd2..7da9d66e 100644 --- a/src/gui/Pages/AddChat/AddChat.qml +++ b/src/gui/Pages/AddChat/AddChat.qml @@ -26,8 +26,17 @@ HPage { HTabButton { text: qsTr("Create group") } } - DirectChat { userId: page.userId } - JoinRoom { userId: page.userId } - CreateRoom { userId: page.userId } + DirectChat { + userId: page.userId + implicitWidth: 0 + } + JoinRoom { + userId: page.userId + implicitWidth: 0 + } + CreateRoom { + userId: page.userId + implicitWidth: 0 + } } }