mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
fix(float): fix float window border drawing with winbar
This commit is contained in:
@@ -5493,7 +5493,7 @@ static void win_redr_border(win_T *wp)
|
||||
int *attrs = wp->w_float_config.border_attr;
|
||||
|
||||
int *adj = wp->w_border_adj;
|
||||
int irow = wp->w_height_inner, icol = wp->w_width_inner;
|
||||
int irow = wp->w_height_inner + wp->w_winbar_height, icol = wp->w_width_inner;
|
||||
|
||||
if (adj[0]) {
|
||||
grid_puts_line_start(grid, 0);
|
||||
|
Reference in New Issue
Block a user