From b35e4f57273f56c53dbc4d77d7b5992c47255662 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 5 May 2020 13:55:37 -0400 Subject: boxdraw added --- st.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'st.c') diff --git a/st.c b/st.c index e4df60c..192360b 100644 --- a/st.c +++ b/st.c @@ -1295,6 +1295,9 @@ tsetchar(Rune u, Glyph *attr, int x, int y) term.dirty[y] = 1; term.line[y][x] = *attr; term.line[y][x].u = u; + + if (isboxdraw(u)) + term.line[y][x].mode |= ATTR_BOXDRAW; } void -- cgit v1.2.3