diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-02-22 08:11:40 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-02-22 08:13:07 -0500 |
commit | 3fc7b26f922d2b014a2c9731bf2215b710e39251 (patch) | |
tree | 026d69e6771c721633b2bb4a45eb43f50c98603e | |
parent | 479f99dc3bf4c7e74a77ebbc558847b8fb39f002 (diff) | |
download | pango-3fc7b26f922d2b014a2c9731bf2215b710e39251.tar.gz |
Use the right FcConfig for FcFontListfix-FcConfig-uses
Passing NULL for a config argument in a fontconfig
api means we are using the default configuration,
which may be different from the one the fontmap
is supposed to be using.
Fix an instance of this in pango_fc_face_list_sizes.
-rw-r--r-- | pango/pangofc-fontmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangofc-fontmap.c b/pango/pangofc-fontmap.c index 2009c46a..3b12d246 100644 --- a/pango/pangofc-fontmap.c +++ b/pango/pangofc-fontmap.c @@ -2652,7 +2652,7 @@ pango_fc_face_list_sizes (PangoFontFace *face, objectset = FcObjectSetCreate (); FcObjectSetAdd (objectset, FC_PIXEL_SIZE); - fontset = FcFontList (NULL, pattern, objectset); + fontset = FcFontList (fcface->family->fontmap->priv->config, pattern, objectset); if (fontset) { |