mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-28 20:02:04 +00:00
Also unmark text on pressing esc
As with backspace, without this the preedit text is not cleared when the IME is canceled by esc
This commit is contained in:
parent
4ab5d97e9b
commit
a060bf7223
1 changed files with 1 additions and 1 deletions
|
|
@ -1235,7 +1235,7 @@ is_ascii_control_char(char x) {
|
|||
const uint32_t key = translateKey(keycode, true);
|
||||
const bool process_text = !window->ns.textInputFilterCallback || window->ns.textInputFilterCallback(key, mods, keycode, flags) != 1;
|
||||
_glfw.ns.text[0] = 0;
|
||||
if (keycode == 0x33 /* backspace */) [self unmarkText];
|
||||
if (keycode == 0x33 /* backspace */ || keycode == 0x35 /* escape */) [self unmarkText];
|
||||
GLFWkeyevent glfw_keyevent = {.key = key, .native_key = keycode, .action = GLFW_PRESS, .mods = mods};
|
||||
if (!_glfw.ns.unicodeData) {
|
||||
// Using the cocoa API for key handling is disabled, as there is no
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue