Merge pull request #319 from acatton/master

Redraw the panel when resizing the window during an incremental search
This commit is contained in:
Hisham Muhammad 2015-12-10 18:34:57 -02:00
commit 563abbc44b
1 changed files with 2 additions and 0 deletions

View File

@ -169,6 +169,8 @@ bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue
IncMode_reset(mode);
}
}
} else if (ch == KEY_RESIZE) {
Panel_resize(panel, COLS, LINES-panel->y-1);
} else {
if (mode->isFilter) {
filterChanged = true;