fix [#33831] "Alt" key is "Alt Window Deactivated"

Patch from Patrick Zulke (pazul)
This commit is contained in:
Campbell Barton 2013-01-14 20:04:36 +00:00
parent ef0ed228ec
commit dfdf07c21a

@ -785,6 +785,11 @@ GHOST_SystemX11::processEvent(XEvent *xe)
/* May have to look at the type of event and filter some out. */
if (xfe.detail != NotifyNonlinear) {
/* Needed for Ubuntu-Unity, see bug [#33831] */
break;
}
GHOST_TEventType gtype = (xfe.type == FocusIn) ?
GHOST_kEventWindowActivate : GHOST_kEventWindowDeactivate;