From 9252e0e65e2df311217ca017501f69ec846d6fa7 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 1 Mar 2022 01:24:53 +0100 Subject: [PATCH] Disable the BusyIndicator For some reason having the busyindicator running increases the time required to load the state cache by several orders of magnitude --- imports/NeoChat/Page/LoadingPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Page/LoadingPage.qml b/imports/NeoChat/Page/LoadingPage.qml index 81143ce7f..9fd8e52db 100644 --- a/imports/NeoChat/Page/LoadingPage.qml +++ b/imports/NeoChat/Page/LoadingPage.qml @@ -13,7 +13,7 @@ Kirigami.Page { anchors.centerIn: parent text: i18n("Loading…") QQC2.BusyIndicator { - running: loadingIndicator.visible + running: false Layout.alignment: Qt.AlignHCenter } }