mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
Merge pull request #11649 from vhakulinen/fix-blank-sections-with-multigrid
invalidate grid on allocation when in ext_multigrid
This commit is contained in:
commit
a0b18464ab
@ -6211,7 +6211,7 @@ void win_grid_alloc(win_T *wp)
|
||||
|| grid->Rows != rows
|
||||
|| grid->Columns != cols) {
|
||||
if (want_allocation) {
|
||||
grid_alloc(grid, rows, cols, wp->w_grid.valid, wp->w_grid.valid);
|
||||
grid_alloc(grid, rows, cols, wp->w_grid.valid, false);
|
||||
grid->valid = true;
|
||||
} else {
|
||||
// Single grid mode, all rendering will be redirected to default_grid.
|
||||
|
Loading…
Reference in New Issue
Block a user