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