diff options
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 2 |
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 |