From 714fcffaa8c2916760f448a1e03efcd6f33a0afe Mon Sep 17 00:00:00 2001 From: veltza <106755522+veltza@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:12:51 +0300 Subject: [PATCH] Fix issue with columns and reflow that breaks sixels (#146) Fixes #145 --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 02725e9..4721ee2 100644 --- a/st.c +++ b/st.c @@ -2748,7 +2748,7 @@ strhandle(void) } else { term.images = newimages; } - #if COLUMNS_PATCH && !REFLOW + #if COLUMNS_PATCH && !REFLOW_PATCH x2 = MIN(x2, term.maxcol) - 1; #else x2 = MIN(x2, term.col) - 1;