fix pagedown in some panels

This commit is contained in:
Hisham Muhammad 2011-12-14 23:30:16 +00:00
parent 9c44f589d2
commit 59d5eecdfd
2 changed files with 4 additions and 2 deletions

View File

@ -48,6 +48,7 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
if (isalpha(ch))
result = Panel_selectByTyping(super, ch);
break;
}

View File

@ -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;