input: after an unknown sequence, reenable cursor only when in main menu

When in the browser, typing keys that produce an unknown escape sequence
should not switch on the cursor.
master
Benno Schulenberg 2016-05-14 22:14:37 +02:00
parent 6698659149
commit 73aa48b772
1 changed files with 5 additions and 2 deletions

View File

@ -1110,8 +1110,11 @@ int parse_escape_sequence(WINDOW *win, int kbinput)
/* TRANSLATORS: This refers to a sequence of escape codes
* (from the keyboard) that nano does not know about. */
statusbar(_("Unknown sequence"));
reset_cursor();
curs_set(1);
suppress_cursorpos = FALSE;
if (currmenu == MMAIN) {
reset_cursor();
curs_set(1);
}
beep();
}
}