diff options
| author | Silent <zdanio95@gmail.com> | 2019-08-05 21:47:53 +0200 |
|---|---|---|
| committer | Silent <zdanio95@gmail.com> | 2019-08-06 19:24:38 +0200 |
| commit | 8e7970585492b9c1c17727c2b0a46ce5e7c4130e (patch) | |
| tree | 0798d5289cd02cbe1d65289dd0c28141c393e2f8 /Source/Core/WinUpdater | |
| parent | f70efbb9637167315451915b28fffaa36ce73560 (diff) | |
WinUpdater: Wait in UI::Init until window is done creating to avoid losing UI::SetVisible signals
Diffstat (limited to 'Source/Core/WinUpdater')
| -rw-r--r-- | Source/Core/WinUpdater/WinUI.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/Core/WinUpdater/WinUI.cpp b/Source/Core/WinUpdater/WinUI.cpp index 6958be9d40..f6b0a7345c 100644 --- a/Source/Core/WinUpdater/WinUI.cpp +++ b/Source/Core/WinUpdater/WinUI.cpp @@ -12,6 +12,8 @@ #include <ShObjIdl.h> #include <shellapi.h> +#include "Common/Event.h" +#include "Common/ScopeGuard.h" #include "Common/StringUtil.h" namespace @@ -23,6 +25,7 @@ HWND current_progressbar_handle = nullptr; ITaskbarList3* taskbar_list = nullptr; std::thread ui_thread; +Common::Event window_created_event; int GetWindowHeight(HWND hwnd) { @@ -54,6 +57,9 @@ bool InitWindow() { InitCommonControls(); + // Notify main thread we're done creating the window when we return + Common::ScopeGuard ui_guard{[] { window_created_event.Set(); }}; + WNDCLASS wndcl = {}; wndcl.lpfnWndProc = WindowProc; wndcl.hbrBackground = GetSysColorBrush(COLOR_MENU); @@ -226,6 +232,9 @@ void MessageLoop() void Init() { ui_thread = std::thread(MessageLoop); + + // Wait for UI thread to finish creating the window (or at least attempting to) + window_created_event.Wait(); } void Stop() |
