Commit 563abbc4 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Merge pull request #319 from acatton/master

Redraw the panel when resizing the window during an incremental search
parents cccc18dd 065aab52
......@@ -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;
......
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