From c809aea278ca1b2bc4827e616024997f579f05f1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 16 Jun 2026 10:24:06 +0100 Subject: [PATCH] Fix a merge problem. --- tty.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tty.c b/tty.c index 4db26287..05919ba1 100644 --- a/tty.c +++ b/tty.c @@ -1446,7 +1446,8 @@ tty_cmd_redrawline(struct tty *tty, const struct tty_ctx *ctx) if (rr->nx == 0) continue; tty_draw_line(tty, ctx->s, ctx->ocx + i + rr->px - x, - ctx->ocy, rr->nx, rr->px, ry, &ctx->style_ctx); + ctx->ocy, rr->nx, rr->px, ry, &ctx->defaults, + ctx->palette); } } }