diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-02-04 14:01:09 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-02-04 14:01:09 +0000 |
commit | c67abcf8182b3a4e4c1e71b370c814a65c12a46c (patch) | |
tree | 600763b0b387458e651cc9383f076e4848044503 | |
parent | 784d6a39299bdc6ef40e785561f2f064a7982ca0 (diff) | |
parent | 07e2d88c205db5620154c6124c8ec7686b8c9028 (diff) | |
download | rtmux-c67abcf8182b3a4e4c1e71b370c814a65c12a46c.tar.gz rtmux-c67abcf8182b3a4e4c1e71b370c814a65c12a46c.tar.bz2 rtmux-c67abcf8182b3a4e4c1e71b370c814a65c12a46c.zip |
Merge branch 'obsd-master' into master
-rw-r--r-- | screen-redraw.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index 8dd75f40..ef79d9aa 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -727,8 +727,10 @@ screen_redraw_draw_borders_cell(struct screen_redraw_ctx *ctx, u_int i, u_int j) border == SCREEN_REDRAW_BORDER_RIGHT) || (cell_type == CELL_RIGHTJOIN && border == SCREEN_REDRAW_BORDER_LEFT)))) && - screen_redraw_check_is(x, y, pane_status, active)) + screen_redraw_check_is(x, y, pane_status, active)) { + gc.attr |= GRID_ATTR_CHARSET; utf8_set(&gc.data, BORDER_MARKERS[border]); + } } tty_cell(tty, &gc, &grid_default_cell, NULL); |