From b5b580fda54bab9d67b909a76fcdbc30ab79d308 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Sun, 29 Aug 2021 18:45:49 +0200 Subject: [PATCH] Loaded causes weird artifacts loading rooms --- resources/qml/TimelineView.qml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 9015bafa..5a8b5381 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -84,17 +84,12 @@ Item { target: timelineView } - Loader { - active: room || roomPreview - asynchronous: false - Layout.fillWidth: true - sourceComponent: MessageView { + MessageView { implicitHeight: msgView.height - typingIndicator.height + Layout.fillWidth: true } - } - Loader { source: CallManager.isOnCall && CallManager.callType != CallType.VOICE ? "voip/VideoCall.qml" : "" onLoaded: TimelineManager.setVideoCallItem()