summaryrefslogtreecommitdiffstats
path: root/CategoriesPanel.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-11-21 18:02:39 +0100
committerBenBE <BenBE@geshi.org>2020-12-03 22:41:31 +0100
commitbc91a382f6c899005463a007008d53c4e3e71be7 (patch)
treef064950ca2b5c4e365a1d3bdcd6eef930223fc69 /CategoriesPanel.c
parentbda07fa42baf7157f416d8616d58342eee51cbd7 (diff)
Allow to pass '/' for item search
Diffstat (limited to 'CategoriesPanel.c')
-rw-r--r--CategoriesPanel.c2
1 files changed, 1 insertions, 1 deletions
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;

© 2014-2024 Faster IT GmbH | imprint | privacy policy