diff options
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1285,6 +1285,9 @@ tsetchar(Rune u, Glyph *attr, int x, int y) | |||
1285 | term.dirty[y] = 1; | 1285 | term.dirty[y] = 1; |
1286 | term.line[y][x] = *attr; | 1286 | term.line[y][x] = *attr; |
1287 | term.line[y][x].u = u; | 1287 | term.line[y][x].u = u; |
1288 | |||
1289 | if (isboxdraw(u)) | ||
1290 | term.line[y][x].mode |= ATTR_BOXDRAW; | ||
1288 | } | 1291 | } |
1289 | 1292 | ||
1290 | void | 1293 | void |