From 08c38d4bc5ef54b4cc67b3ab6dff6878293085ff Mon Sep 17 00:00:00 2001 From: Peter Maatman Date: Sat, 6 Jul 2013 20:42:59 +0200 Subject: [PATCH] clients/editor.c: Ignore ESC key Otherwise, editor would print the "unknown UTF-8 glyph" boxes. --- clients/editor.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clients/editor.c b/clients/editor.c index 3fb645b..5e8ae8e 100644 --- a/clients/editor.c +++ b/clients/editor.c @@ -1155,11 +1155,13 @@ key_handler(struct window *window, widget_schedule_redraw(entry->widget); } break; + case XKB_KEY_Escape: + break; default: if (xkb_keysym_to_utf8(sym, text, sizeof(text)) <= 0) break; - text_entry_commit_and_reset(entry); + text_entry_commit_and_reset(entry); text_entry_insert_at_cursor(entry, text, 0, 0); break; -- 2.7.4