Commit 1f475ad8ebaae350efa6b139f101025f699c8dab

Stefan Sperling 2018-05-10T13:24:48

hide terminal cursor in tog

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/tog/tog.c b/tog/tog.c
index 391c982..ab26b42 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -675,6 +675,7 @@ init_curses(void)
 	nonl();
 	intrflush(stdscr, FALSE);
 	keypad(stdscr, TRUE);
+	curs_set(0);
 
 	tog_main_win = newwin(0, 0, 0, 0);
 	if (tog_main_win == NULL)