From 10e14ae504df467234284a1040e91d48b41b2dd0 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 6 Feb 2017 19:26:49 +0000 Subject: Add BCE for clear to start of screen, which was somehow missed. --- tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 0230a60e..7ecf2a2d 100644 --- a/tty.c +++ b/tty.c @@ -1057,7 +1057,7 @@ tty_cmd_clearstartofscreen(struct tty *tty, const struct tty_ctx *ctx) struct screen *s = wp->screen; u_int i, j; - tty_attributes(tty, &grid_default_cell, wp); + tty_default_attributes(tty, wp, ctx->bg); tty_region_pane(tty, ctx, 0, screen_size_y(s) - 1); tty_margin_off(tty); -- cgit