video: Don't overwrite all the pending flags in the OnWindowHidden handler

Other flags may have been set when programmatically hiding a window, so or in the fullscreen and maximized flags to avoid accidentally clearing any others.
This commit is contained in:
Frank Praznik 2024-03-04 10:29:43 -05:00
parent 4189edaeb7
commit 1e790b20c9
1 changed files with 1 additions and 1 deletions

View File

@ -3460,7 +3460,7 @@ void SDL_OnWindowHidden(SDL_Window *window)
* this was initiated by the window manager due to the window being unmapped
* when minimized.
*/
window->pending_flags = (window->flags & (SDL_WINDOW_FULLSCREEN | SDL_WINDOW_MAXIMIZED));
window->pending_flags |= (window->flags & (SDL_WINDOW_FULLSCREEN | SDL_WINDOW_MAXIMIZED));
/* The window is already hidden at this point, so just change the mode back if necessary. */
SDL_UpdateFullscreenMode(window, SDL_FALSE, SDL_FALSE);