term: cell erase: reset *all* attributes *except* background

This commit is contained in:
Daniel Eklöf 2019-08-03 19:26:02 +02:00
parent 6e233f8272
commit 9a0d440e95
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -163,15 +163,12 @@ erase_cell_range(struct terminal *term, struct row *row, int start, int end)
assert(start < term->cols);
assert(end < term->cols);
memset(&row->cells[start], 0, (end - start + 1) * sizeof(row->cells[0]));
if (unlikely(term->vt.attrs.have_bg)) {
for (int col = start; col <= end; col++) {
row->cells[col].wc = 0;
row->cells[col].attrs.clean = 0;
row->cells[col].attrs.have_bg = 1;
row->cells[col].attrs.bg = term->vt.attrs.bg;
}
} else {
memset(&row->cells[start], 0, (end - start + 1) * sizeof(row->cells[0]));
}
row->dirty = true;
}