diff options
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index 4d277e3c8..a74f75071 100644 --- a/src/screen.c +++ b/src/screen.c @@ -1154,7 +1154,7 @@ win_update(win_T *wp) } /* Window is zero-height: nothing to draw. */ - if (wp->w_height == 0) + if (wp->w_height + WINBAR_HEIGHT(wp) == 0) { wp->w_redr_type = 0; return; |