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 --- CategoriesPanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CategoriesPanel.c') diff --git a/CategoriesPanel.c b/CategoriesPanel.c index 2dc1c3bf..4ee1ad46 100644 --- a/CategoriesPanel.c +++ b/CategoriesPanel.c @@ -87,7 +87,7 @@ static HandlerResult CategoriesPanel_eventHandler(Panel* super, int ch) { break; } 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