aboutsummaryrefslogtreecommitdiff
path: root/src/edbox.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-02-18 13:26:59 -0500
committerB. Watson <urchlay@slackware.uk>2026-02-18 13:26:59 -0500
commite05376aefc6b342859e8cddf9eca647dc61c3336 (patch)
treee52de6d8717bf549aa4c91b44b4d2297711f821e /src/edbox.c
parent48feffd829f30d393b39ae1cbdc7bf3eddca7652 (diff)
downloadfujinet-chat-e05376aefc6b342859e8cddf9eca647dc61c3336.tar.gz
More work...
Diffstat (limited to 'src/edbox.c')
-rw-r--r--src/edbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/edbox.c b/src/edbox.c
index b64ef11..4492308 100644
--- a/src/edbox.c
+++ b/src/edbox.c
@@ -98,6 +98,7 @@ static void special_keystroke(char c) {
static void backspace(void) {
if(!edbox_pos) return;
+ hide_cursor();
edit_box[--edbox_pos] = 0;
edbox_show();
}