mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-07 07:00:48 +00:00
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:
parent
4189edaeb7
commit
1e790b20c9
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue