Do not minimize on focus loss

The default behavior seems annoying.

Fixes <https://github.com/Genymobile/scrcpy/issues/554>
This commit is contained in:
Romain Vimont 2019-05-31 15:35:53 +02:00
parent ad55a9addc
commit 9712cb8123

View file

@ -76,6 +76,11 @@ sdl_init_and_configure(bool display) {
}
#endif
// Do not minimize on focus loss
if (!SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0")) {
LOGW("Could not disable minimize on focus loss");
}
// Do not disable the screensaver when scrcpy is running
SDL_EnableScreenSaver();