WinUpdater: Create updater window as hidden by default
UpdaterCommon attempts to hide updater window directly after creating, so creating it hidden avoids the window from showing for a split second
This commit is contained in:
parent
24718c1a38
commit
f70efbb963
|
@ -45,7 +45,7 @@ LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
}; // namespace
|
||||
|
||||
constexpr int PROGRESSBAR_FLAGS = WS_VISIBLE | WS_CHILD | PBS_SMOOTH | PBS_SMOOTHREVERSE;
|
||||
constexpr int WINDOW_FLAGS = WS_VISIBLE | WS_CLIPCHILDREN;
|
||||
constexpr int WINDOW_FLAGS = WS_CLIPCHILDREN;
|
||||
constexpr int PADDING_HEIGHT = 5;
|
||||
|
||||
namespace UI
|
||||
|
|
Loading…
Reference in New Issue