summaryrefslogtreecommitdiffstats
path: root/ColumnsPanel.c
diff options
context:
space:
mode:
Diffstat (limited to 'ColumnsPanel.c')
-rw-r--r--ColumnsPanel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ColumnsPanel.c b/ColumnsPanel.c
index 5c630749..e1a75587 100644
--- a/ColumnsPanel.c
+++ b/ColumnsPanel.c
@@ -62,7 +62,8 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
- result = Panel_selectByTyping(super, ch);
+ if (isalpha(ch))
+ result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;
break;