From 9ed18aca4f2f0101adfa7683021ae95dfd3fc9c7 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 13 Jul 2010 11:09:45 +0200 Subject: disable showing the cursor --- src/interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interface.c b/src/interface.c index fb0d24c..d6219d2 100644 --- a/src/interface.c +++ b/src/interface.c @@ -40,6 +40,7 @@ void interface_init(void) starty = (24 - HEIGHT) / 2; menu_win = newwin(HEIGHT, WIDTH, starty, startx); keypad(menu_win, TRUE); + curs_set(0); mvprintw(0, 0, "Use arrow keys to go up and down, Press enter to select a choice"); refresh(); } -- cgit