Browse Source

ncurses: mute switch fall through

pull/85/head
Rémi Denis-Courmont 7 years ago
parent
commit
42ebadd105
  1. 3
      modules/gui/ncurses.c

3
modules/gui/ncurses.c

@ -1569,9 +1569,10 @@ static void HandleCommonKey(intf_thread_t *intf, input_thread_t *input,
switch(key)
{
case 0x1b: /* ESC */
/* See comment in HandleEditBoxKey() */
if (getch() != ERR)
return;
/* fall through */
case 'q':
case 'Q':
case KEY_EXIT:

Loading…
Cancel
Save