Don't tell the system to disable compositing under X11

Fixes #123
This commit is contained in:
Daniele Laudani 2020-06-03 14:38:44 +02:00 committed by GitHub
parent f00d5d55df
commit 7aa462e43d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,11 @@ int main(int argc, char **argv) {
#endif
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS);
#ifdef SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR /* Available since 2.0.8 */
SDL_SetHint(SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0");
#endif
SDL_EnableScreenSaver();
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
atexit(SDL_Quit);