diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/edbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |
