Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #319 from acatton/master
Browse files Browse the repository at this point in the history
Redraw the panel when resizing the window during an incremental search
  • Loading branch information
hishamhm committed Dec 10, 2015
2 parents cccc18d + 065aab5 commit 563abbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions IncSet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 563abbc

Please sign in to comment.