diff --git a/src/qml/Component/Login/Loading.qml b/src/qml/Component/Login/Loading.qml index dd2106932..d7d3bac3c 100644 --- a/src/qml/Component/Login/Loading.qml +++ b/src/qml/Component/Login/Loading.qml @@ -16,4 +16,11 @@ Kirigami.LoadingPlaceholder { QQC2.Label { text: i18n("Please wait. This might take a little while.") } + + Connections { + target: Controller + function onInitiated() { + closeDialog() + } + } }