Fix duplicate raw mouse events with XInput2
Make XGrabPointer calls in X11_SetWindowGrab and X11_CaptureMouse consistent by passing False to owner_mask along with proper event_mask.
parent
447194987c
commit
afc97cbd5d
|
@ -1329,9 +1329,12 @@ X11_SetWindowGrab(_THIS, SDL_Window * window, SDL_bool grabbed)
|
|||
if (oldstyle_fullscreen || grabbed) {
|
||||
/* Try to grab the mouse */
|
||||
for (;;) {
|
||||
const unsigned int mask = ButtonPressMask | ButtonReleaseMask
|
||||
| PointerMotionMask | FocusChangeMask;
|
||||
int result =
|
||||
X11_XGrabPointer(display, data->xwindow, True, 0, GrabModeAsync,
|
||||
GrabModeAsync, data->xwindow, None, CurrentTime);
|
||||
X11_XGrabPointer(display, data->xwindow, False, mask,
|
||||
GrabModeAsync, GrabModeAsync, data->xwindow,
|
||||
None, CurrentTime);
|
||||
if (result == GrabSuccess) {
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue