summaryrefslogtreecommitdiff
path: root/pango/pangocairo-context.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pangocairo-context.c')
-rw-r--r--pango/pangocairo-context.c10
1 files changed, 9 insertions, 1 deletions
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);