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 + } }