summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authornicm <nicm>2017-02-06 19:26:49 +0000
committernicm <nicm>2017-02-06 19:26:49 +0000
commit10e14ae504df467234284a1040e91d48b41b2dd0 (patch)
treed6a15fa4714dddc6a8698e1c536dcfe35becd588 /input.c
parente67548dc36fdb4454aded1c95bd35e2443191f94 (diff)
Add BCE for clear to start of screen, which was somehow missed.
Diffstat (limited to 'input.c')
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index 9d8bb60a..76a6e9f8 100644
--- a/input.c
+++ b/input.c
@@ -1330,7 +1330,7 @@ input_csi_dispatch(struct input_ctx *ictx)
screen_write_clearendofscreen(sctx, ictx->cell.cell.bg);
break;
case 1:
- screen_write_clearstartofscreen(sctx);
+ screen_write_clearstartofscreen(sctx, ictx->cell.cell.bg);
break;
case 2:
screen_write_clearscreen(sctx, ictx->cell.cell.bg);