From 6d34c8fa79ec153f8ccec0fc693d2d63d7456015 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 20 May 2020 15:25:53 -0400 Subject: [PATCH] feat: set chat item height depending on the height of the text --- ui/app/AppLayouts/Chat/ChatLayout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatLayout.qml b/ui/app/AppLayouts/Chat/ChatLayout.qml index 93edf1a7b8..dd88d328de 100644 --- a/ui/app/AppLayouts/Chat/ChatLayout.qml +++ b/ui/app/AppLayouts/Chat/ChatLayout.qml @@ -252,7 +252,7 @@ SplitView { id: chatLogViewDelegate Rectangle { id: chatBox - height: 140 + height: 60 + chatText.height color: "#00000000" border.color: "#00000000" Layout.alignment: Qt.AlignLeft | Qt.AlignTop