mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
sixel: don't erase if cursor is *before* the image
This commit is contained in:
parent
cc5dedc259
commit
e0dc01f2ee
1 changed files with 2 additions and 1 deletions
3
sixel.c
3
sixel.c
|
|
@ -93,9 +93,10 @@ sixel_delete_at_point(struct terminal *term, int _row, int col)
|
|||
const int six_end = six_start + six->rows - 1;
|
||||
|
||||
if (row >= six_start && row <= six_end) {
|
||||
const int col_start = six->pos.col;
|
||||
const int col_end = six->pos.col + six->cols;
|
||||
|
||||
if (col < col_end) {
|
||||
if (col >= col_start && col < col_end) {
|
||||
sixel_erase(term, six);
|
||||
tll_remove(term->grid->sixel_images, it);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue