mirror of
https://github.com/glfw/glfw.git
synced 2025-06-14 19:52:14 +00:00
X11: Fix transplanting oversight
There was a oversight in transplanting shibukawa's fix:
* https://github.com/glfw/glfw/pull/658
* d36a164423
This made preedit callbacks not being called.
This commit is contained in:
parent
20cc0fa21c
commit
3ad6cd187d
@ -2052,7 +2052,7 @@ void _glfwCreateInputContextX11(_GLFWwindow* window)
|
|||||||
|
|
||||||
window->x11.ic = XCreateIC(_glfw.x11.im,
|
window->x11.ic = XCreateIC(_glfw.x11.im,
|
||||||
XNInputStyle,
|
XNInputStyle,
|
||||||
XIMPreeditNothing | XIMStatusNothing,
|
XIMPreeditCallbacks | XIMStatusCallbacks,
|
||||||
XNClientWindow,
|
XNClientWindow,
|
||||||
window->x11.handle,
|
window->x11.handle,
|
||||||
XNFocusWindow,
|
XNFocusWindow,
|
||||||
|
Loading…
Reference in New Issue
Block a user