From 6c76026d53f1f6f5631a6e600158e8c0b6ad2ce1 Mon Sep 17 00:00:00 2001 From: Alex Jbanca Date: Tue, 10 Jan 2023 13:45:07 +0200 Subject: [PATCH] perf(chatScroll): Use Qt.callLater to release the main thread when parsing and loading links data perf(chatScroll): Undo Use Qt.callLater to release the main thread perf(chatScroll): Undo Use Qt.callLater to release the main thread --- ui/imports/shared/views/chat/LinksMessageView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/imports/shared/views/chat/LinksMessageView.qml b/ui/imports/shared/views/chat/LinksMessageView.qml index 6fcf1770afc..908ef7221d2 100644 --- a/ui/imports/shared/views/chat/LinksMessageView.qml +++ b/ui/imports/shared/views/chat/LinksMessageView.qml @@ -209,7 +209,7 @@ Column { Component.onCompleted: { // putting this is onCompleted prevents automatic binding, where // QML warns of a binding loop detected - this.sourceComponent = getSourceComponent() + this.sourceComponent = linkMessageLoader.getSourceComponent() } } }