From f175575c0920f0992a2842502d1ea3e284338c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 6 Mar 2021 21:09:55 +0100 Subject: [PATCH] sixel: fixup row is multiple of 6 --- sixel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sixel.c b/sixel.c index f51d7aa1..d89e7a87 100644 --- a/sixel.c +++ b/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;