Fix handling of grabbed key events

https://bugzilla.gnome.org/show_bug.cgi?id=596659
This commit is contained in:
Dan Winship 2009-09-28 15:47:39 -04:00
parent ce1393d2d4
commit debf08cac0

View File

@ -577,8 +577,8 @@ is_grabbed_event (XEvent *event)
case EnterNotify:
case LeaveNotify:
case MotionNotify:
case KeyPressMask:
case KeyReleaseMask:
case KeyPress:
case KeyRelease:
return TRUE;
}