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

fix pagedown in some panels

parent 9c44f589
...@@ -48,6 +48,7 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) { ...@@ -48,6 +48,7 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
} }
default: default:
{ {
if (isalpha(ch))
result = Panel_selectByTyping(super, ch); result = Panel_selectByTyping(super, ch);
break; break;
} }
......
...@@ -62,6 +62,7 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) { ...@@ -62,6 +62,7 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
} }
default: default:
{ {
if (isalpha(ch))
result = Panel_selectByTyping(super, ch); result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP) if (result == BREAK_LOOP)
result = IGNORED; result = IGNORED;
......
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