summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-20 21:58:53 +0000
committerGitHub <noreply@github.com>2026-05-20 21:58:53 +0000
commit887af06f324f6e85e1bfb6f596ba2409d134c8f0 (patch)
tree1e1b21a3055df49113e7f46f1caaf2da542887c7
parentf03dee2aa509030f4383814c1e49b33e0cab9c0d (diff)
fix boxdraw
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
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