Signed-off-by: Michael Schuster <michael@schuster.ms>
_asyncAuth.reset(new Flow2Auth(ocWizard->account().data(), this));
connect(_asyncAuth.data(), &Flow2Auth::result, this, &Flow2AuthCredsPage::asyncAuthResult, Qt::QueuedConnection);
_asyncAuth->start();
- wizard()->hide();
+
+ // Don't hide the wizard (avoid user confusion)!
+ //wizard()->hide();
}
void OCC::Flow2AuthCredsPage::cleanupPage()
_asyncAuth.reset(new OAuth(ocWizard->account().data(), this));
connect(_asyncAuth.data(), &OAuth::result, this, &OwncloudOAuthCredsPage::asyncAuthResult, Qt::QueuedConnection);
_asyncAuth->start();
- wizard()->hide();
+
+ // Don't hide the wizard (avoid user confusion)!
+ //wizard()->hide();
}
void OCC::OwncloudOAuthCredsPage::cleanupPage()