diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2022-07-17 04:29:05 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2022-07-17 04:29:05 +0300 |
commit | ad3434a3eb4a5546b00680f9c5b41fc597272b59 (patch) | |
tree | cd8f478e9c74c9a367b2295ad801852ca57c45d6 /st.c | |
parent | 24487a33291ea1cbb6456f21c48230eed4da4498 (diff) |
boxdraw patch
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1446,6 +1446,9 @@ tsetchar(Rune u, const Glyph *attr, int x, int y) term.line[y][x] = *attr; term.line[y][x].u = u; term.line[y][x].mode |= ATTR_SET; + + if (isboxdraw(u)) + term.line[y][x].mode |= ATTR_BOXDRAW; } void |