tweaks: move a cursor-on switch to a more logical place (again)

But do it correctly this time: don't switch it on when replacing.
master
Benno Schulenberg 2016-12-05 15:43:58 +01:00
parent f03f5d5b51
commit 86121cf3fc
3 changed files with 4 additions and 5 deletions

View File

@ -779,6 +779,10 @@ int do_yesno_prompt(bool all, const char *msg)
wnoutrefresh(bottomwin);
/* When not replacing, show the cursor. */
if (!all)
curs_set(1);
currmenu = MYESNO;
kbinput = get_kbinput(bottomwin);

View File

@ -3375,8 +3375,6 @@ void do_linter(void)
sprintf(msg, _("This message is for unopened file %s,"
" open it in a new buffer?"),
curlint->filename);
/* Show a cursor after the question. */
curs_set(1);
i = do_yesno_prompt(FALSE, msg);
free(msg);
if (i == -1) {

View File

@ -2085,9 +2085,6 @@ void warn_and_shortly_pause(const char *msg)
statusbar(msg);
beep();
napms(1800);
/* Switch the cursor back on after displaying the message. */
curs_set(1);
}
/* Display a message on the statusbar, and set suppress_cursorpos to