Close login window after the account is loaded

This commit is contained in:
Tobias Fella
2023-01-28 22:56:21 +01:00
committed by Carl Schwan
parent 3850fe15a5
commit 9d5303113e

View File

@@ -16,4 +16,11 @@ Kirigami.LoadingPlaceholder {
QQC2.Label {
text: i18n("Please wait. This might take a little while.")
}
Connections {
target: Controller
function onInitiated() {
closeDialog()
}
}
}