summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-12-24 13:52:20 -0500
committerMatthias Clasen <mclasen@redhat.com>2021-12-25 09:55:25 -0500
commit7a9a4369215ca5da4bb85166d74cd00fbd7adf3d (patch)
tree86f88afaaf6696451c665ea1fbbceaa33dfcafe2
parent08b4e6279c64bc694292199c1806d8af349bbd28 (diff)
downloadpango-7a9a4369215ca5da4bb85166d74cd00fbd7adf3d.tar.gz
itemize: Try harder to avoid NULL fonts
Always fall back to the base font if the fontset has no coverage.
-rw-r--r--pango/itemize.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/pango/itemize.c b/pango/itemize.c
index 9aa0c29c..442fe8e9 100644
--- a/pango/itemize.c
+++ b/pango/itemize.c
@@ -772,7 +772,8 @@ get_font (ItemizeState *state,
GetFontInfo info;
/* We'd need a separate cache when fallback is disabled, but since lookup
- * with fallback disabled is faster anyways, we just skip caching */
+ * with fallback disabled is faster anyways, we just skip caching
+ */
if (state->enable_fallback && font_cache_get (state->cache, wc, font, position))
return TRUE;
@@ -783,8 +784,9 @@ get_font (ItemizeState *state,
if (state->enable_fallback)
pango_fontset_foreach (state->current_fonts, get_font_foreach, &info);
- else
- get_font_foreach (NULL, get_base_font (state), &info);
+
+ if (!info.font)
+ info.font = get_base_font (state);
*font = info.font;
*position = info.position;