MGR: When clicking next on the project welcome page, only go to the account info page if neither the authenticator or setup cookie are present. Otherwise attempt to attach with either.

This commit is contained in:
Rom Walton 2016-02-19 18:11:31 -05:00
parent 62d38d3d3c
commit ee47ac8ef9
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ wxWizardPageEx* CProjectWelcomePage::GetNext() const
if (CHECK_CLOSINGINPROGRESS()) {
// Cancel Event Detected
return PAGE_TRANSITION_NEXT(ID_COMPLETIONERRORPAGE);
} else if (pWA->GetProjectAuthenticator().IsEmpty()) {
} else if (pWA->GetProjectAuthenticator().IsEmpty() && pWA->GetProjectSetupCookie().IsEmpty()) {
return PAGE_TRANSITION_NEXT(ID_ACCOUNTINFOPAGE);
} else {
return PAGE_TRANSITION_NEXT(ID_PROJECTPROCESSINGPAGE);