From a9a2e7df4a81494f4e6b06b02b9559806b931291 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sun, 15 Mar 2026 01:16:23 -0400 Subject: update editbox after every keystroke, not just "normal" ones that cause edbox_putc(). --- src/edbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/edbox.c b/src/edbox.c index 6dfaaca..f8f334c 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -62,7 +62,6 @@ void edbox_putc(char c) { memmove(edit_box + edbox_pos + 1, edit_box + edbox_pos, EDBOX_SIZE - edbox_pos - 1); edit_box[edbox_pos++] = c; edbox_len++; - edbox_show(); } static void fake_keystroke(char c) { @@ -246,5 +245,6 @@ void edbox_keystroke(void) { normal_keystroke(); } + edbox_show(); show_cursor(); } -- cgit v1.2.3