Merge pull request #2858 from bwalding/raise-after-oauth

Ensure the Cloud Service wizard on top after the OAuth modal dialog closes
This commit is contained in:
Mark Liversedge
2018-04-29 12:40:16 +01:00
committed by GitHub

View File

@@ -351,6 +351,10 @@ AddAuth::doAuth()
message->show();
wizard->cloudService->message = "";
}
// Due to the OAuth dialog being modal, the order of the background windows can get out of order
// This ensures the wizard is back on top
wizard->raise();
}
}
}