From 4e296cc7940237c658fc31914896ddef1d75f080 Mon Sep 17 00:00:00 2001 From: pdw <> Date: Wed, 1 Jan 2014 14:46:30 +0000 Subject: [PATCH] Patch to remove blinking cursor (unclear what platforms this affects) Gerrit Renker --- ui.c | 1 + 1 file changed, 1 insertion(+) 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); }