From e927465f5b687f9e1da89eee4716b66c7708c232 Mon Sep 17 00:00:00 2001 From: Jeff Walsh Date: Sat, 2 Oct 2021 00:28:19 +1000 Subject: [PATCH 2/3] pgtk: Set correct face color for stretched glyphs * src/pgtkterm.c (x_draw_stretch_glyph_string): s/foreground/background (Bug#50579) --- src/pgtkterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgtkterm.c b/src/pgtkterm.c index aae4e1011b..04d01ef9bc 100644 --- a/src/pgtkterm.c +++ b/src/pgtkterm.c @@ -2391,7 +2391,7 @@ x_draw_stretch_glyph_string (struct glyph_string *s) color = s->xgcv.foreground; } else - color = s->face->foreground; + color = s->face->background; cairo_t *cr = pgtk_begin_cr_clip (s->f); -- 2.33.1