From 22f2c78c283846250e029026b15dc778c9fba633 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 8 Feb 2022 17:52:56 -0600 Subject: [PATCH] [util/draw] Explicitly chain from render_color_glyph to render_glyph This seems to be more robust. See: https://github.com/harfbuzz/harfbuzz/pull/3411#issuecomment-1033176635 --- util/helper-cairo-user.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/helper-cairo-user.hh b/util/helper-cairo-user.hh index 718872c71..8c1f9f222 100644 --- a/util/helper-cairo-user.hh +++ b/util/helper-cairo-user.hh @@ -272,7 +272,7 @@ render_color_glyph (cairo_scaled_font_t *scaled_font, if (ret != CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED) return ret; - return ret; + return render_glyph (scaled_font, glyph, cr, extents); } #endif