mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 23:18:33 +00:00
fix(screen): correctly draw background and eob with 'rightleft' (#22640)
This commit is contained in:
@@ -550,8 +550,7 @@ void grid_put_linebuf(ScreenGrid *grid, int row, int coloff, int endcol, int cle
|
||||
|
||||
if (bg_attr) {
|
||||
for (int c = col; c < endcol; c++) {
|
||||
linebuf_attr[off_from + (size_t)c] =
|
||||
hl_combine_attr(bg_attr, linebuf_attr[off_from + (size_t)c]);
|
||||
linebuf_attr[c] = hl_combine_attr(bg_attr, linebuf_attr[c]);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user