From 081aa95b38c53b5a9ea47907496e0ff043fdffe3 Mon Sep 17 00:00:00 2001 From: Mateja Date: Thu, 8 Apr 2021 15:24:18 +0200 Subject: Switched to Fira Code font and applied `boxdraw` patch. --- st.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'st.c') diff --git a/st.c b/st.c index 76b7e0d..248728f 100644 --- a/st.c +++ b/st.c @@ -1219,6 +1219,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