From 9d5303113eb517e89b7edb6924219e21650ce523 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sat, 28 Jan 2023 22:56:21 +0100 Subject: [PATCH] Close login window after the account is loaded --- src/qml/Component/Login/Loading.qml | 7 +++++++ 1 file changed, 7 insertions(+) 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() + } + } }