mirror of
git://git.sv.gnu.org/nano.git
synced 2025-02-15 12:54:14 +03:00
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.
This commit is contained in:
parent
6698659149
commit
73aa48b772
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user