diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-12 16:16:16 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-12 16:16:16 +0100 |
commit | 2bff5e7867b4849019df04d77ecade300c6e3dce (patch) | |
tree | e1f2724b716ff060ba7782cb763aaf056ec9bbd3 /tty.c | |
parent | 90f2a417af1d6a15435571e6512d75b7ab373c58 (diff) | |
download | rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.tar.gz rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.tar.bz2 rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.zip |
ECH needs to use background colour.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -961,7 +961,7 @@ tty_cmd_deletecharacter(struct tty *tty, const struct tty_ctx *ctx) void tty_cmd_clearcharacter(struct tty *tty, const struct tty_ctx *ctx) { - tty_attributes(tty, &grid_default_cell, ctx->wp); + tty_default_attributes(tty, ctx->wp, ctx->bg); tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy); |