diff --git a/src/qml/WelcomePage.qml b/src/qml/WelcomePage.qml index 059a5772d..85a5606aa 100644 --- a/src/qml/WelcomePage.qml +++ b/src/qml/WelcomePage.qml @@ -110,6 +110,12 @@ FormCard.FormCardPage { } } } + onCountChanged: { + if (loadingAccounts.count === 0 && loadedAccounts.count === 1 && showExisting) { + Controller.activeConnection = AccountRegistry.data(AccountRegistry.index(0, 0), 257); + root.connectionChosen(); + } + } } }