summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-09-20 08:58:25 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-09-20 08:59:35 +0200
commit4179be427f217260bd507b5cc8eae7042e8dd740 (patch)
tree01a3c11351120c4b021317fa1c597c4c6e137ef4
parentTranslated using Weblate (Estonian) (diff)
downloadnheko-4179be427f217260bd507b5cc8eae7042e8dd740.tar.xz
Fix binding loop when trying to reply
-rw-r--r--resources/qml/TimelineView.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index aa4d6846..de818cd9 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -434,12 +434,13 @@ Page { id: footerContent anchors.left: parent.left anchors.right: parent.right + anchors.bottom: parent.bottom Rectangle { id: typingRect anchors.left: parent.left anchors.right: parent.right color: (chat.model && chat.model.typingUsers.length > 0) ? colors.window : "transparent" - height: chatFooter.height + height: typingDisplay.height Label { id: typingDisplay anchors.left: parent.left