Commit 59d5eecd authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

fix pagedown in some panels

parent 9c44f589
......@@ -48,7 +48,8 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
result = Panel_selectByTyping(super, ch);
if (isalpha(ch))
result = Panel_selectByTyping(super, ch);
break;
}
}
......
......@@ -62,7 +62,8 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
result = Panel_selectByTyping(super, ch);
if (isalpha(ch))
result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;
break;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment