mirror of https://github.com/xzeldon/htop.git
Merge pull request #319 from acatton/master
Redraw the panel when resizing the window during an incremental search
This commit is contained in:
commit
563abbc44b
2
IncSet.c
2
IncSet.c
|
@ -169,6 +169,8 @@ bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue
|
||||||
IncMode_reset(mode);
|
IncMode_reset(mode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (ch == KEY_RESIZE) {
|
||||||
|
Panel_resize(panel, COLS, LINES-panel->y-1);
|
||||||
} else {
|
} else {
|
||||||
if (mode->isFilter) {
|
if (mode->isFilter) {
|
||||||
filterChanged = true;
|
filterChanged = true;
|
||||||
|
|
Loading…
Reference in New Issue