From 993ac0ad925e8a22e41591390d069d7ecf37518b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Tue, 14 Apr 2020 10:49:49 +0200 Subject: pangocairo-context: Don't invalidate if font options are equal --- pango/pangocairo-context.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pango/pangocairo-context.c b/pango/pangocairo-context.c index 5949c448..959fcfe0 100644 --- a/pango/pangocairo-context.c +++ b/pango/pangocairo-context.c @@ -242,7 +242,15 @@ pango_cairo_context_set_font_options (PangoContext *context, g_return_if_fail (PANGO_IS_CONTEXT (context)); - info = get_context_info (context, TRUE); + info = get_context_info (context, TRUE); + + if (!info->set_options && !options) + return; + + if (info->set_options && + options && + cairo_font_options_equal (info->set_options, options)) + return; if (info->set_options || options) pango_context_changed (context); -- cgit v1.2.1