comparison src/screen.c @ 24289:8938c0c98149 v8.2.2685

patch 8.2.2685: custom statusline not drawn correctly with WinBar Commit: https://github.com/vim/vim/commit/49c51b825a7435a750e64f7f0ebd09166e8559df Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 1 16:16:18 2021 +0200 patch 8.2.2685: custom statusline not drawn correctly with WinBar Problem: Custom statusline not drawn correctly with WinBar. Solution: Also adjust the column for the custom status line. (Yee Cheng Chin, closes #8047)
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Apr 2021 16:30:05 +0200
parents 8ebf8b3dfc08
children 7334bf933510
comparison
equal deleted inserted replaced
24288:9f2f0ae1db47 24289:8938c0c98149
1246 use_sandbox = was_set_insecurely((char_u *)"tabline", 0); 1246 use_sandbox = was_set_insecurely((char_u *)"tabline", 0);
1247 # endif 1247 # endif
1248 } 1248 }
1249 else 1249 else
1250 { 1250 {
1251 row = W_WINROW(wp) + wp->w_height; 1251 row = statusline_row(wp);
1252 fillchar = fillchar_status(&attr, wp); 1252 fillchar = fillchar_status(&attr, wp);
1253 maxwidth = wp->w_width; 1253 maxwidth = wp->w_width;
1254 1254
1255 if (draw_ruler) 1255 if (draw_ruler)
1256 { 1256 {