Fix bug where maximized->fullscreen->windowed mode stays maximized.

This commit is contained in:
jitspoe 2023-11-06 02:36:12 -05:00
parent 5ee983188d
commit 7918e2b6d9
1 changed files with 3 additions and 1 deletions

View File

@ -1692,7 +1692,9 @@ void DisplayServerWindows::window_set_mode(WindowMode p_mode, WindowID p_window)
SystemParametersInfoA(SPI_SETMOUSETRAILS, restore_mouse_trails, 0, 0); SystemParametersInfoA(SPI_SETMOUSETRAILS, restore_mouse_trails, 0, 0);
restore_mouse_trails = 0; restore_mouse_trails = 0;
} }
} else if (p_mode == WINDOW_MODE_WINDOWED) { }
if (p_mode == WINDOW_MODE_WINDOWED) {
ShowWindow(wd.hWnd, SW_RESTORE); ShowWindow(wd.hWnd, SW_RESTORE);
wd.maximized = false; wd.maximized = false;
wd.minimized = false; wd.minimized = false;