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 --- ColumnsPanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ColumnsPanel.c') diff --git a/ColumnsPanel.c b/ColumnsPanel.c index 63348ec5..b2a82465 100644 --- a/ColumnsPanel.c +++ b/ColumnsPanel.c @@ -95,7 +95,7 @@ static HandlerResult ColumnsPanel_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); if (result == BREAK_LOOP) result = IGNORED; -- cgit v1.2.3