mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-08 13:45:37 +00:00
[client] enable SDL_SYSWMEVENT on X11 to work around SDL2 bugs
This commit is contained in:
parent
5d4e9b1ead
commit
f82a164d75
2 changed files with 4 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
B1-87-g788f885759+1
|
B1-88-g5d4e9b1ead+1
|
|
@ -1328,6 +1328,9 @@ static int lg_run()
|
||||||
{
|
{
|
||||||
if (state.wminfo.subsystem == SDL_SYSWM_X11)
|
if (state.wminfo.subsystem == SDL_SYSWM_X11)
|
||||||
{
|
{
|
||||||
|
// enable X11 events to work around SDL2 bugs
|
||||||
|
SDL_EventState(SDL_SYSWMEVENT, SDL_ENABLE);
|
||||||
|
|
||||||
Atom NETWM_BYPASS_COMPOSITOR = XInternAtom(
|
Atom NETWM_BYPASS_COMPOSITOR = XInternAtom(
|
||||||
state.wminfo.info.x11.display,
|
state.wminfo.info.x11.display,
|
||||||
"NETWM_BYPASS_COMPOSITOR",
|
"NETWM_BYPASS_COMPOSITOR",
|
||||||
|
|
Loading…
Reference in a new issue