From dda9d4e357749bd6f7b23b20888b4109485068ef Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Mon, 15 Oct 2018 14:43:26 -0500 Subject: [PATCH] input: don't detect on Linux console in tiny version --- src/winio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/winio.c b/src/winio.c index eb807fec..dd90052d 100644 --- a/src/winio.c +++ b/src/winio.c @@ -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)