forked from AuroraMiddleware/gtk
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:
parent
a5c8fedf47
commit
b6ac1b4bbf
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user