input: don't detect <Ctrl+Shift+Delete> on Linux console in tiny version

master
David Lawrence Ramsey 2018-10-15 14:43:26 -05:00 committed by Benno Schulenberg
parent c43177487a
commit dda9d4e357
1 changed files with 1 additions and 1 deletions

View File

@ -610,10 +610,10 @@ int parse_kbinput(WINDOW *win)
return SHIFT_TAB;
shift_held = TRUE;
}
#endif
/* Are both Shift and Ctrl being held while Delete is pressed? */
if ((modifiers & 0x05) == 0x05 && retval == KEY_DC)
return CONTROL_SHIFT_DELETE;
#endif
/* Is Ctrl being held? */
if (modifiers & 0x04) {
if (retval == KEY_UP)