From 6a0b51a78ecb27171c47a57dd01bfff4133ad0b6 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 2 Oct 2021 15:11:46 +0200 Subject: [PATCH] Insist on that loading might take a while for initial loading of account --- imports/NeoChat/Component/Login/Loading.qml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/imports/NeoChat/Component/Login/Loading.qml b/imports/NeoChat/Component/Login/Loading.qml index 5bd2fd482..fe4fb40b8 100644 --- a/imports/NeoChat/Component/Login/Loading.qml +++ b/imports/NeoChat/Component/Login/Loading.qml @@ -10,11 +10,18 @@ import org.kde.kirigami 2.15 as Kirigami import org.kde.neochat 1.0 import NeoChat.Component 1.0 -QQC2.BusyIndicator { - +Kirigami.PlaceholderMessage { property var showContinueButton: false property var showBackButton: false property string title: i18n("Loading") anchors.centerIn: parent + + QQC2.Label { + text: i18n("Please wait. This might take a little while.") + } + + QQC2.BusyIndicator { + Layout.alignment: Qt.AlignHCenter + } }