mirror of https://github.com/xzeldon/htop.git
fix pagedown in some panels
This commit is contained in:
parent
9c44f589d2
commit
59d5eecdfd
|
@ -48,6 +48,7 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
|
|||
}
|
||||
default:
|
||||
{
|
||||
if (isalpha(ch))
|
||||
result = Panel_selectByTyping(super, ch);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -62,6 +62,7 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
|
|||
}
|
||||
default:
|
||||
{
|
||||
if (isalpha(ch))
|
||||
result = Panel_selectByTyping(super, ch);
|
||||
if (result == BREAK_LOOP)
|
||||
result = IGNORED;
|
||||
|
|
Loading…
Reference in New Issue