diff options
author | nicm <nicm> | 2020-04-18 15:22:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-18 15:22:05 +0000 |
commit | deffef6f1378db4986941dd9d83ba61f11142cd8 (patch) | |
tree | 88c4e43fb3e869cb72df2a2e816d85465fc9ab81 | |
parent | ea5fdd5331d74d305cbb61b8f47a2054fc2052fb (diff) | |
download | rtmux-deffef6f1378db4986941dd9d83ba61f11142cd8.tar.gz rtmux-deffef6f1378db4986941dd9d83ba61f11142cd8.tar.bz2 rtmux-deffef6f1378db4986941dd9d83ba61f11142cd8.zip |
Reset background colour on scrolled line.
-rw-r--r-- | screen-write.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/screen-write.c b/screen-write.c index bd861a42..81d07cbb 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1381,6 +1381,7 @@ screen_write_collect_scroll(struct screen_write_ctx *ctx) ctx->list[y].data = cl->data; } ctx->list[s->rlower].data = saved; + ctx->list[s->rlower].bg = 1 + 8; } /* Flush collected lines. */ |