mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-22 01:40:17 -05:00
sixel: debug: fix logged width/height values when emitting sixel
image.width and image.height are the scaled dimensions, and these haven't been set when the log message is printed.
This commit is contained in:
parent
1568518ab3
commit
1421ba504d
1 changed files with 1 additions and 1 deletions
2
sixel.c
2
sixel.c
|
|
@ -1162,7 +1162,7 @@ sixel_unhook(struct terminal *term)
|
|||
|
||||
LOG_DBG("generating %s %dx%d pixman image at %d-%d",
|
||||
image.opaque ? "opaque" : "transparent",
|
||||
image.width, image.height,
|
||||
image.original.width, image.original.height,
|
||||
image.pos.row, image.pos.row + image.rows);
|
||||
|
||||
image.original.pix = pixman_image_create_bits_no_clear(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue