mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
macOS: do not pass input events while having marked text
fix chinese input method backspacing issue macOS: Set pre-edit text for IME macOS: implement glfwPlatformUpdateIMEState set firstRectForCharacterRange correctly macOS: update IME position on each input macOS: use float instead of int for updateIMEState minor fix macOS: ignore marked text on deadkey fixes german keyboard input macOS: convert markedRect to screen coord
This commit is contained in:
2
glfw/input.c
vendored
2
glfw/input.c
vendored
@@ -919,7 +919,7 @@ GLFWAPI void glfwUpdateIMEState(GLFWwindow* handle, int which, int a, int b, int
|
||||
assert(window != NULL);
|
||||
|
||||
_GLFW_REQUIRE_INIT();
|
||||
#if defined(_GLFW_X11) || defined(_GLFW_WAYLAND)
|
||||
#if defined(_GLFW_X11) || defined(_GLFW_WAYLAND) || defined(_GLFW_COCOA)
|
||||
_glfwPlatformUpdateIMEState(window, which, a, b, c, d);
|
||||
#else
|
||||
(void)window; (void)which; (void)a; (void)b; (void)c; (void)d;
|
||||
|
||||
Reference in New Issue
Block a user