summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c
index 849006e..705f9a0 100644
--- a/ui.c
+++ b/ui.c
@@ -432,6 +432,7 @@ void ui_curses_init() {
(void) nonl(); /* tell curses not to do NL->CR/NL on output */
(void) cbreak(); /* take input chars one at a time, no wait for \n */
(void) noecho(); /* don't echo input */
+ (void) curs_set(0); /* hide blinking cursor in ui */
halfdelay(2);
}