From 4179be427f217260bd507b5cc8eae7042e8dd740 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Sun, 20 Sep 2020 08:58:25 +0200 Subject: [PATCH] Fix binding loop when trying to reply --- resources/qml/TimelineView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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