From bc91a382f6c899005463a007008d53c4e3e71be7 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 21 Nov 2020 18:02:39 +0100 Subject: Allow to pass '/' for item search --- AvailableColumnsPanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AvailableColumnsPanel.c') diff --git a/AvailableColumnsPanel.c b/AvailableColumnsPanel.c index feea5786..8945bd2c 100644 --- a/AvailableColumnsPanel.c +++ b/AvailableColumnsPanel.c @@ -53,7 +53,7 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) { } default: { - if (0 < ch && ch < 255 && isalpha((unsigned char)ch)) + if (0 < ch && ch < 255 && isgraph((unsigned char)ch)) result = Panel_selectByTyping(super, ch); break; } -- cgit v1.2.3