aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/window.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-23 16:32:35 +0200
committerGitHub <noreply@github.com>2022-05-23 16:32:35 +0200
commitc2f4920d3b60123ac8edfda970217282492e8d4b (patch)
treec546a8986a3a7a2fb96066fa6e52384f0c7960c3 /src/nvim/window.c
parent4b4643be07e4e9259b3cb05e511e5047778733c1 (diff)
parent353553f913e5ad7b36182eed473660c92d656656 (diff)
downloadrneovim-c2f4920d3b60123ac8edfda970217282492e8d4b.tar.gz
rneovim-c2f4920d3b60123ac8edfda970217282492e8d4b.tar.bz2
rneovim-c2f4920d3b60123ac8edfda970217282492e8d4b.zip
Merge pull request #18712 from famiu/feat/ui/winbar_redraw
fix(ui): redraw winbar alongside statusline
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r--src/nvim/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c
index 835aba204d..0ba5bb1889 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -6709,7 +6709,7 @@ void set_winbar(void)
if (wp->w_winbar_height != winbar_height) {
wp->w_winbar_height = winbar_height;
win_set_inner_size(wp);
- wp->w_redr_winbar = winbar_height;
+ wp->w_redr_status = wp->w_redr_status || winbar_height;
if (winbar_height == 0) {
// When removing winbar, deallocate the w_winbar_click_defs array