video: Changed SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS to default to FALSE.

Fixes Bugzilla #5106.  (and probably many others, too!)
This commit is contained in:
Ryan C. Gordon
2020-06-26 20:16:43 -04:00
parent 21482c1582
commit 1947ca7028
2 changed files with 4 additions and 2 deletions

View File

@@ -2734,7 +2734,7 @@ ShouldMinimizeOnFocusLoss(SDL_Window * window)
}
#endif
return SDL_GetHintBoolean(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, SDL_TRUE);
return SDL_GetHintBoolean(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, SDL_FALSE);
}
void