From bd1bc59859498980050cb03bbff584c4e4853ffa Mon Sep 17 00:00:00 2001 From: gridtime Date: Fri, 26 Jan 2024 15:29:26 +0100 Subject: [PATCH] fixes content overlay in add chat tabs --- src/gui/Pages/AddChat/AddChat.qml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) 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 + } } }