aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-03 19:25:03 +0800
committerGitHub <noreply@github.com>2022-08-03 19:25:03 +0800
commitc57e133e50b9f3ccd9a3d73f4e7e3e7281797000 (patch)
treee7052562476fbe38f3bfa5d034484c4d149afc7b /src
parent5ee56f95c7c4aa588b37fec297e21a040a8d2367 (diff)
downloadrneovim-c57e133e50b9f3ccd9a3d73f4e7e3e7281797000.tar.gz
rneovim-c57e133e50b9f3ccd9a3d73f4e7e3e7281797000.tar.bz2
rneovim-c57e133e50b9f3ccd9a3d73f4e7e3e7281797000.zip
fix(ui): set redraw_cmdline when setting window height (#19630)
Diffstat (limited to 'src')
-rw-r--r--src/nvim/window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c
index c7f038850e..b737215616 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -5518,6 +5518,7 @@ void win_setheight_win(int height, win_T *win)
msg_row = row;
msg_col = 0;
redraw_all_later(NOT_VALID);
+ redraw_cmdline = true;
}
}