sixel: unhook: look total number of sixels

This helps debug sixel overwrites, as it makes it more visible when
there are sixels that _should_ have been removed.
This commit is contained in:
Daniel Eklöf 2020-10-04 19:17:33 +02:00
parent b66e235e84
commit cf620cf3d0
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -658,6 +658,9 @@ sixel_unhook(struct terminal *term)
term->sixel.max_col = 0;
term->sixel.pos = (struct coord){0, 0};
LOG_DBG("you now have %zu sixels in current grid",
tll_length(term->grid->sixel_images));
render_refresh(term);
}