From b03ffa3720b3a1d4e2b0b63f317287cf3afc58cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Feb 2020 10:46:54 +0100 Subject: [PATCH] sixel: resize image buffer after receiving a "raster" command --- sixel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sixel.c b/sixel.c index 81dd980f..b3bbdb65 100644 --- a/sixel.c +++ b/sixel.c @@ -260,6 +260,7 @@ sixel_raster(struct terminal *term, uint8_t c) LOG_DBG("pan=%u, pad=%u (aspect ratio = %u), size=%ux%u", pan, pad, pan / pad, ph, pv); + resize(term, ph, pv); } switch (c) {