diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-26 14:28:58 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-27 11:31:45 +0200 |
commit | 10cabf787724871173a294f2fc1a5dbc62f2ee91 (patch) | |
tree | 1443073225d71a99828643fd0d04bc312edf7f61 /src/nvim/grid.c | |
parent | 0b2667ed36d26f29683cae8c8a595b5633a7b77f (diff) | |
download | rneovim-10cabf787724871173a294f2fc1a5dbc62f2ee91.tar.gz rneovim-10cabf787724871173a294f2fc1a5dbc62f2ee91.tar.bz2 rneovim-10cabf787724871173a294f2fc1a5dbc62f2ee91.zip |
refactor(grid): use batched updates for statusline and ruler
Diffstat (limited to 'src/nvim/grid.c')
-rw-r--r-- | src/nvim/grid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/grid.c b/src/nvim/grid.c index 2eeefab27d..da72054540 100644 --- a/src/nvim/grid.c +++ b/src/nvim/grid.c @@ -953,6 +953,7 @@ void win_grid_alloc(win_T *wp) if ((resizing_screen || was_resized) && want_allocation) { ui_call_grid_resize(grid_allocated->handle, grid_allocated->cols, grid_allocated->rows); + ui_check_cursor_grid(grid_allocated->handle); } } |