mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
term: modify term_fill() to optionally reset the SGR attributes
This commit is contained in:
parent
189cfd717f
commit
b3a84ba71b
3 changed files with 10 additions and 4 deletions
2
csi.c
2
csi.c
|
|
@ -1942,7 +1942,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
term, top, left, bottom - top + 1, right - left + 1);
|
||||
|
||||
for (int r = top; r <= bottom; r++)
|
||||
term_fill(term, r, left, c, right - left + 1);
|
||||
term_fill(term, r, left, c, right - left + 1, true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue