diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-04-21 16:01:30 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-04-21 16:01:30 +0100 |
commit | dd5299841a87c0bf842488f7f9feb84b7e37c819 (patch) | |
tree | cd5fe7e48a56a1efcffabff18c09a3aa99cde02d /screen-write.c | |
parent | 291b85746ff2c3bf142f59f2264ec25caf0af411 (diff) | |
parent | 445dfa8512b3b5552a444dd03958cdec3f968f83 (diff) | |
download | rtmux-dd5299841a87c0bf842488f7f9feb84b7e37c819.tar.gz rtmux-dd5299841a87c0bf842488f7f9feb84b7e37c819.tar.bz2 rtmux-dd5299841a87c0bf842488f7f9feb84b7e37c819.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/screen-write.c b/screen-write.c index 98a4a701..afa1e96a 100644 --- a/screen-write.c +++ b/screen-write.c @@ -1372,10 +1372,11 @@ screen_write_collect_scroll(struct screen_write_ctx *ctx) for (y = s->rupper; y < s->rlower; y++) { cl = &ctx->s->write_list[y + 1]; TAILQ_CONCAT(&ctx->s->write_list[y].items, &cl->items, entry); + ctx->s->write_list[y].bg = cl->bg; ctx->s->write_list[y].data = cl->data; } - ctx->s->write_list[s->rlower].data = saved; ctx->s->write_list[s->rlower].bg = 1 + 8; + ctx->s->write_list[s->rlower].data = saved; } /* Flush collected lines. */ |