From 887af06f324f6e85e1bfb6f596ba2409d134c8f0 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Wed, 20 May 2026 21:58:53 +0000 Subject: fix boxdraw --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index a3c4bef..02b2850 100644 --- a/st.c +++ b/st.c @@ -1311,7 +1311,7 @@ tsetchar(Rune u, const Glyph *attr, int x, int y) line[x].u = u; if (isboxdraw(u)) - term.line[y][x].mode |= ATTR_BOXDRAW; + line[x].mode |= ATTR_BOXDRAW; } void -- cgit v1.2.3