mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
search and filter for the strace and lsof screens!
This commit is contained in:
@ -101,6 +101,12 @@ static HandlerResult CategoriesPanel_eventHandler(Panel* super, int ch) {
|
||||
result = HANDLED;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
if (isalpha(ch))
|
||||
result = Panel_selectByTyping(super, ch);
|
||||
if (result == BREAK_LOOP)
|
||||
result = IGNORED;
|
||||
break;
|
||||
}
|
||||
|
||||
if (result == HANDLED) {
|
||||
|
Reference in New Issue
Block a user