Merge pull request #6734 from spycrab/updater_fix

Updater: Fix UI not showing up
This commit is contained in:
Pierre Bourdon 2018-05-02 19:08:09 +02:00 committed by GitHub
commit 6bd7e99a62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -730,6 +730,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine
return 0;
}
std::thread thread(UI::MessageLoop);
thread.detach();
UI::SetDescription("Fetching and parsing manifests...");
Manifest this_manifest, next_manifest;