mirror of
https://github.com/neovim/neovim.git
synced 2026-07-22 00:51:33 +00:00
fix(statusline): bail out properly on negative row (#23535)
This commit is contained in:
@@ -336,7 +336,7 @@ static void win_redr_custom(win_T *wp, bool draw_winbar, bool draw_ruler)
|
||||
grid_adjust(&grid, &row, &col);
|
||||
|
||||
if (row < 0) {
|
||||
return;
|
||||
goto theend;
|
||||
}
|
||||
|
||||
fillchar = wp->w_p_fcs_chars.wbr;
|
||||
|
||||
Reference in New Issue
Block a user