diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2025-02-14 17:26:57 +0700 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2025-03-27 18:41:57 +0700 |
commit | 424d30fe97a856426bbaffbf413ec158572cbfb9 (patch) | |
tree | d839d7cc228550c92af7f6f32d54686682a857a4 /src/nvim/ui.c | |
parent | c5044bd021482c4bdcb7d2e3ff5b0e688daa681b (diff) | |
download | rneovim-424d30fe97a856426bbaffbf413ec158572cbfb9.tar.gz rneovim-424d30fe97a856426bbaffbf413ec158572cbfb9.tar.bz2 rneovim-424d30fe97a856426bbaffbf413ec158572cbfb9.zip |
fix(ui): send multigrid message position and size when the UI is refreshed
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index e203e66ad1..283994dc4c 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -229,6 +229,7 @@ void ui_refresh(void) } msg_scroll_flush(); } + msg_ui_refresh(); if (!ui_active()) { return; |