mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: delete all sixels on the 'alt' grid when switching back to 'normal'
This commit is contained in:
parent
85684bc0c7
commit
7fd380f253
1 changed files with 8 additions and 0 deletions
8
csi.c
8
csi.c
|
|
@ -1151,6 +1151,14 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
tll_free(term->alt.damage);
|
||||
tll_free(term->alt.scroll_damage);
|
||||
|
||||
/* Delete all sixel images on the alt screen */
|
||||
tll_foreach(term->sixel_images, it) {
|
||||
if (it->item.grid == &term->alt) {
|
||||
sixel_destroy(&it->item);
|
||||
tll_remove(term->sixel_images, it);
|
||||
}
|
||||
}
|
||||
|
||||
term_damage_all(term);
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue