- fix misleading hint about minimising on focus loss

This commit is contained in:
Jørgen P. Tjernø 2013-06-04 13:47:51 -07:00
parent 5a7d3757f5
commit 449d63452e

View file

@ -2087,7 +2087,7 @@ SDL_OnWindowFocusLost(SDL_Window * window)
SDL_UpdateWindowGrab(window);
/* If we're fullscreen on a single-head system and lose focus, minimize */
/* If we're fullscreen and lose focus, minimize unless the hint tells us otherwise */
if ((window->flags & SDL_WINDOW_FULLSCREEN) && ShouldMinimizeOnFocusLoss() ) {
SDL_MinimizeWindow(window);
}