Browse Source

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.
Frank Praznik 1 year ago
parent
commit
1e790b20c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/SDL_video.c

+ 1 - 1
src/video/SDL_video.c

@@ -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);