From 29247fe47748b96f076b9736b3f644418d323593 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Wed, 15 Apr 2009 09:39:57 +0200 Subject: [PATCH] Removed the cursor hiding related lines (which were commented). --- selector.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/selector.cc b/selector.cc index e1ecf98..4950c90 100644 --- a/selector.cc +++ b/selector.cc @@ -824,9 +824,6 @@ int main(int argc, char **argv) { noecho(); - // Hide the cursor - // curs_set(0); - // So that the arrow keys work keypad(stdscr, TRUE); @@ -838,7 +835,6 @@ int main(int argc, char **argv) { color_fg_highlight < 0 || color_bg_highlight >= COLORS || color_bg_highlight < 0 || color_bg_highlight >= COLORS) { echo(); - // curs_set(1); endwin(); cerr << "Color numbers have to be between 0 and " << COLORS - 1 << "." << endl; exit(1); @@ -942,7 +938,6 @@ int main(int argc, char **argv) { } while(key != '\n' && key != KEY_ENTER && key != '\007'); // ^G echo(); - // curs_set(1); endwin(); ////////////////////////////////////////////////////////////////////// -- 2.20.1