Added workaround for cursor hiding on some WMs.

Closes #431.
Fixes #309.
master
Aleksey Rybalkin ago%!(EXTRA string=11 years) committed by Camilla Berglund
parent dc4f0f6c91
commit a343e9a475
  1. 2
      README.md
  2. 3
      src/x11_window.c

@ -69,6 +69,7 @@ GLFW bundles a number of dependencies in the `deps/` directory.
- [X11] Made XInput2 optional at compile-time
- [X11] Made Xxf86vm optional at compile-time
- [X11] Bugfix: `glfwTerminate` could close an unrelated file descriptor
- [X11] Bugfix: Some WMs did not respect cursor redefinition
## Contact
@ -161,6 +162,7 @@ skills.
- Pieroman
- Jorge Rodriguez
- Ed Ropple
- Aleksey Rybalkin
- Riku Salminen
- Brandon Schaefer
- Sebastian Schuberth

@ -1058,6 +1058,9 @@ static void processEvent(XEvent *event)
case EnterNotify:
{
if (window->cursorMode == GLFW_CURSOR_HIDDEN)
hideCursor(window);
_glfwInputCursorEnter(window, GL_TRUE);
break;
}

Loading…
Cancel
Save