Fixed disabling key repeat on Linux

This commit is contained in:
Alexandre Bodelot 2014-04-07 19:15:14 +02:00
parent 83fd76c40b
commit 816bc93b04

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;