summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-08-29 18:45:49 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-08-29 18:45:49 +0200
commitb5b580fda54bab9d67b909a76fcdbc30ab79d308 (patch)
tree897406bd7988465e407b866cdd04b4beeceee8e6
parentFix memory leak of animated image textures (diff)
downloadnheko-b5b580fda54bab9d67b909a76fcdbc30ab79d308.tar.xz
Loaded causes weird artifacts loading rooms
-rw-r--r--resources/qml/TimelineView.qml9
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()