From 89c1c43ef96d805d8fcb987c024ef85f994f11fa Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 21 Mar 2024 12:10:57 +0000 Subject: Write padding character into the right position. --- screen-write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen-write.c b/screen-write.c index ff758a17..554232eb 100644 --- a/screen-write.c +++ b/screen-write.c @@ -2051,7 +2051,7 @@ screen_write_combine(struct screen_write_ctx *ctx, const struct grid_cell *gc) /* Set the new cell. */ grid_view_set_cell(gd, cx - n, cy, &last); if (force_wide) - grid_view_set_padding(gd, cx, cy); + grid_view_set_padding(gd, cx - 1, cy); /* * Redraw the combined cell. If forcing the cell to width 2, reset the -- cgit v1.2.3