summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Eden <sven.eden@gmx.de>2013-04-09 07:52:02 +0200
committerSven Eden <sven.eden@gmx.de>2013-04-09 07:52:02 +0200
commite7cd472cd9fddb8b10b53edcab0401ae586717f6 (patch)
tree94c58ee5a6701ab69f66c4994c1cd3eef4e8c967 /ufed-curses-help.c
parentChanged the colors of highlighted lines in the help screen to make them bette... (diff)
downloadufed-e7cd472cd9fddb8b10b53edcab0401ae586717f6.tar.gz
ufed-e7cd472cd9fddb8b10b53edcab0401ae586717f6.tar.bz2
ufed-e7cd472cd9fddb8b10b53edcab0401ae586717f6.zip
The cursor is now invisible on the help screen.
Diffstat (limited to 'ufed-curses-help.c')
-rw-r--r--ufed-curses-help.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ufed-curses-help.c b/ufed-curses-help.c
index 7254a9d..981f946 100644
--- a/ufed-curses-help.c
+++ b/ufed-curses-help.c
@@ -342,5 +342,7 @@ void help(void)
init_lines();
}
+ int oldVis = curs_set(0);
maineventloop("", &callback, &drawline, lines, keys, false);
+ curs_set(oldVis);
}