diff options
author | nicm <nicm> | 2019-06-27 15:17:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-06-27 15:17:41 +0000 |
commit | dae2868d1227b95fd076fb4a5efa6256c7245943 (patch) | |
tree | e9c0285c193c9e3463b4e3d45cfd71a7668aedfa /screen-write.c | |
parent | 3a6d90adadfcd4aa6b513df7f8ae5c4dcc05a6dc (diff) | |
download | rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.tar.gz rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.tar.bz2 rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.zip |
Add support for underscore colours with Setulc capability, mostly from
Kai Moschcau.
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c index 174c7a82..631328a3 100644 --- a/screen-write.c +++ b/screen-write.c @@ -36,7 +36,7 @@ static const struct grid_cell *screen_write_combine(struct screen_write_ctx *, const struct utf8_data *, u_int *); static const struct grid_cell screen_write_pad_cell = { - GRID_FLAG_PADDING, 0, 8, 8, { { 0 }, 0, 0, 0 } + GRID_FLAG_PADDING, 0, 8, 8, 0, { { 0 }, 0, 0, 0 } }; struct screen_write_collect_item { |