mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
vt: DECALN: render at bottom of terminal, not in view
This commit is contained in:
parent
f6d87e235b
commit
35c56765a4
1 changed files with 1 additions and 1 deletions
2
vt.c
2
vt.c
|
|
@ -722,7 +722,7 @@ esc_dispatch(struct terminal *term, uint8_t final)
|
|||
switch (final) {
|
||||
case '8':
|
||||
for (int r = 0; r < term->rows; r++) {
|
||||
struct row *row = grid_row_in_view(term->grid, r);
|
||||
struct row *row = grid_row(term->grid, r);
|
||||
for (int c = 0; c < term->cols; c++) {
|
||||
row->cells[c].wc = L'E';
|
||||
row->cells[c].attrs.clean = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue