mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-15 21:44:36 +03:00
Allow to pass '/' for item search
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user