Merge pull request #79016 from bruvzg/fix_win_initial_ne_fs

[Windows] Fix setting initial non-exclusive window mode.
This commit is contained in:
Rémi Verschelde
2023-07-08 18:21:04 +02:00
2 changed files with 4 additions and 2 deletions

View File

@@ -3926,7 +3926,9 @@ DisplayServer::WindowID DisplayServerWindows::_create_window(WindowMode p_mode,
WindowRect.top += offset.y;
WindowRect.bottom += offset.y;
AdjustWindowRectEx(&WindowRect, dwStyle, FALSE, dwExStyle);
if (p_mode != WINDOW_MODE_FULLSCREEN && p_mode != WINDOW_MODE_EXCLUSIVE_FULLSCREEN) {
AdjustWindowRectEx(&WindowRect, dwStyle, FALSE, dwExStyle);
}
WindowID id = window_id_counter;
{