Skip to content
Snippets Groups Projects
Commit 3a693536 authored by Liam Coursodon's avatar Liam Coursodon Committed by Liam Coursodon
Browse files

MessageBar: Fixed issue where sending a message would break the layout.

Change-Id: Iacdea26427e48b00f9edd9aacf57f88860717e0c
parent ffcd3e59
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ RowLayout { ...@@ -51,7 +51,7 @@ RowLayout {
signal showMapClicked signal showMapClicked
signal emojiButtonClicked signal emojiButtonClicked
height: showTypo || multiLine ? textAreaObj.height + 25 + 3 * marginSize + 1 : textAreaObj.height + marginSize + 1 height: showTypo || multiLine ? messageBarTextArea.height + 25 + 3 * marginSize + 1 : textAreaObj.height + marginSize + 1
Rectangle { Rectangle {
Layout.preferredHeight: parent.height Layout.preferredHeight: parent.height
...@@ -180,7 +180,6 @@ RowLayout { ...@@ -180,7 +180,6 @@ RowLayout {
onSendMessagesRequired: { onSendMessagesRequired: {
sendMessageButtonClicked(); sendMessageButtonClicked();
messageBarTextArea.heightBinding();
} }
onTextChanged: MessagesAdapter.userIsComposing(text ? true : false) onTextChanged: MessagesAdapter.userIsComposing(text ? true : false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment