Merge pull request #567 from abodelot/x11keyrepeat

Fixed disabling key repeat on Linux (#564)
This commit is contained in:
Laurent Gomila 2014-04-07 20:17:40 +02:00
commit 2204838384

View File

@ -890,6 +890,13 @@ bool WindowImplX11::processEvent(XEvent windowEvent)
}
break;
}
// Parent window changed
case ReparentNotify :
{
XSync(m_display, True); // Discard remaining events
break;
}
}
return true;