Merge pull request #682 from istudyatuni/fix-add-account-behaviour

This commit is contained in:
Sefa Eyeoglu 2022-06-01 10:13:35 +02:00
parent d7fad4bd04
commit 938f222791
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -105,6 +105,11 @@ void LaunchController::decideAccount()
// Open the account manager. // Open the account manager.
APPLICATION->ShowGlobalSettings(m_parentWidget, "accounts"); APPLICATION->ShowGlobalSettings(m_parentWidget, "accounts");
} }
else if (reply == QMessageBox::No)
{
// Do not open "profile select" dialog.
return;
}
} }
m_accountToUse = accounts->defaultAccount(); m_accountToUse = accounts->defaultAccount();