From 9384da4f428b0f2ce3172f32c34e342e53f235ac Mon Sep 17 00:00:00 2001 From: molan-git <59296158+molan-git@users.noreply.github.com> Date: Fri, 31 Jan 2020 11:01:08 +0100 Subject: [PATCH] Adjust TextArea height --- qml/pages/Conversation.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/pages/Conversation.qml b/qml/pages/Conversation.qml index fd8672d..fce4817 100644 --- a/qml/pages/Conversation.qml +++ b/qml/pages/Conversation.qml @@ -207,7 +207,7 @@ Page { text: description !== "" && (description.charAt(0) == '@' || description.charAt( 0) == '#') ? description + ' ' : '' - height: Math.max(300, Math.min(900, implicitHeight)) + height: Math.max(270, Math.min(900, implicitHeight)) //height: implicitHeight horizontalAlignment: Text.AlignLeft placeholderText: qsTr("What's on your mind?")