From be6292a521ed9f85c98b0036fce0c1509a162a34 Mon Sep 17 00:00:00 2001 From: miruka Date: Fri, 20 Dec 2019 07:38:42 -0400 Subject: [PATCH] RoomPane leave more space for chat in small window --- src/gui/Pages/Chat/Chat.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Pages/Chat/Chat.qml b/src/gui/Pages/Chat/Chat.qml index d3d702fc..c61a3c1b 100644 --- a/src/gui/Pages/Chat/Chat.qml +++ b/src/gui/Pages/Chat/Chat.qml @@ -57,7 +57,7 @@ Item { sourceComponent: RoomPane { id: roomPane referenceSizeParent: chat - maximumSize: chat.width - theme.minimumSupportedWidth + maximumSize: chat.width - theme.minimumSupportedWidth * 1.5 } } }