Merge pull request #567 from abodelot/x11keyrepeat
Fixed disabling key repeat on Linux (#564)
This commit is contained in:
commit
2204838384
@ -890,6 +890,13 @@ bool WindowImplX11::processEvent(XEvent windowEvent)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Parent window changed
|
||||||
|
case ReparentNotify :
|
||||||
|
{
|
||||||
|
XSync(m_display, True); // Discard remaining events
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user