GDK W32: Ignore autorepeated key presses on modifier keys

The X11 backend does not send autorepeated messages for modifier keys,
and doing so prevents motion compression from working.

https://bugzilla.gnome.org/show_bug.cgi?id=771568
This commit is contained in:
Jeremy Tan 2016-09-17 20:46:30 +08:00 committed by Руслан Ижбулатов
parent a5c8fedf47
commit b6ac1b4bbf

View File

@ -2281,6 +2281,14 @@ gdk_event_translate (MSG *msg,
in_ime_composition)
break;
/* Ignore autorepeats on modifiers */
if (msg->message == WM_KEYDOWN &&
(msg->wParam == VK_MENU ||
msg->wParam == VK_CONTROL ||
msg->wParam == VK_SHIFT) &&
((HIWORD(msg->lParam) & KF_REPEAT) >= 1))
break;
if (keyboard_grab &&
!propagate (&window, msg,
keyboard_grab->window,