diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-29 18:45:49 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-29 18:45:49 +0200 |
commit | b5b580fda54bab9d67b909a76fcdbc30ab79d308 (patch) | |
tree | 897406bd7988465e407b866cdd04b4beeceee8e6 /resources/qml | |
parent | Fix memory leak of animated image textures (diff) | |
download | nheko-b5b580fda54bab9d67b909a76fcdbc30ab79d308.tar.xz |
Loaded causes weird artifacts loading rooms
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 9 |
1 files 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() |