st-flexipatch

My st-flexipatch configuration
git clone git://git.ethandl.dev/st-flexipatch
Log | Files | Refs | README | LICENSE

commit 714fcffaa8c2916760f448a1e03efcd6f33a0afe
parent 7a581fe4e15b538d3440562aa7f89d775187f250
Author: veltza <106755522+veltza@users.noreply.github.com>
Date:   Fri,  9 Aug 2024 10:12:51 +0300

Fix issue with columns and reflow that breaks sixels (#146)

Fixes #145
Diffstat:
Mst.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;