[Windows] Fix borderless window flag toggle and restoring minimized borderless window.

This commit is contained in:
bruvzg 2022-02-22 10:56:58 +02:00
parent c77348b468
commit d39ec5b9ed

View File

@ -1037,9 +1037,7 @@ void DisplayServerWindows::_get_window_style(bool p_main_window, bool p_fullscre
r_style = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU;
}
}
if (!p_borderless) {
r_style |= WS_VISIBLE;
}
r_style |= WS_VISIBLE;
if (p_no_activate_focus) {
r_style_ex |= WS_EX_TOPMOST | WS_EX_NOACTIVATE;