mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
sixel: fixup row is multiple of 6
This commit is contained in:
parent
f143efb999
commit
f175575c09
1 changed files with 1 additions and 1 deletions
2
sixel.c
2
sixel.c
|
|
@ -915,7 +915,7 @@ sixel_add(struct terminal *term, uint32_t color, uint8_t sixel)
|
|||
max(term->sixel.max_col, term->sixel.pos.col + 1));
|
||||
|
||||
int height = max(
|
||||
term->sixel.image.height, term->sixel.pos.row + 1);
|
||||
term->sixel.image.height, term->sixel.pos.row + 6);
|
||||
|
||||
if (!resize(term, width, height))
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue