mirror of
https://github.com/glfw/glfw.git
synced 2025-04-04 21:15:07 +00:00
Merge 6419ed578f
into e7ea71be03
This commit is contained in:
commit
626cd9b87c
1 changed files with 5 additions and 1 deletions
|
@ -1437,7 +1437,11 @@ static void processEvent(XEvent *event)
|
|||
updateCursorImage(window);
|
||||
|
||||
_glfwInputCursorEnter(window, GLFW_TRUE);
|
||||
_glfwInputCursorPos(window, x, y);
|
||||
|
||||
// Don't call the cursor callback when GLFW_CURSOR_DISABLED for
|
||||
// this event, it snaps the cursor back to the center
|
||||
if (window->cursorMode != GLFW_CURSOR_DISABLED)
|
||||
_glfwInputCursorPos(window, x, y);
|
||||
|
||||
window->x11.lastCursorPosX = x;
|
||||
window->x11.lastCursorPosY = y;
|
||||
|
|
Loading…
Add table
Reference in a new issue