The Beruriah Incident
The Beruriah Incident

Reputation: 3247

Alt-tab from fullscreen SDL

When I run a fullscreen window (C++ with SDL using the SDL_FULLSCREEN flag), alt-tab has no effect. Researching it, I only found posts of people having problems with it. Is there a way to do it consistently across different machines? (I'm running Ubuntu now, but I'd like portability) Does OpenGL handle this better? (considering switching)

Upvotes: 3

Views: 1656

Answers (1)

genpfault
genpfault

Reputation: 52084

SDL likes to XGrabKeyboard() when fullscreened on X11. This tends to lock out your window manager's hotkeys.

Fix SDL or fix your window manager.

Upvotes: 2

Related Questions