summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2023-04-30 20:19:04 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2023-04-30 20:26:23 -0400
commitbe61145144f61674d1c3e6130fabf3a63d9c6529 (patch)
tree3364645be8d12fc0eef509136bed59a07027e533
parentc532908f5fdd3aee9d88d9704aedbe3be82c7ce5 (diff)
downloadxorg-lib-libXft-be61145144f61674d1c3e6130fabf3a63d9c6529.tar.gz
issue 19: Problem loading "SourceCodePro-Regular" font in Fedora
Ignore face flag FT_FACE_FLAG_COLOR if FT_FACE_FLAG_SVG is set, allowing adobe-source-code-pro font to work. This bug was introduced by a change in freetype2 #1151, 62bc04f4c5b4369cc493ff24b1de27aabd79e0c6 Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r--src/xftfreetype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xftfreetype.c b/src/xftfreetype.c
index b91f8f4..9fa91db 100644
--- a/src/xftfreetype.c
+++ b/src/xftfreetype.c
@@ -849,7 +849,7 @@ XftFontOpenInfo (Display *dpy,
if (!(face->face_flags & FT_FACE_FLAG_SCALABLE))
antialias = FcFalse;
- color = FT_HAS_COLOR(face) ? FcTrue : FcFalse;
+ color = (FT_HAS_COLOR(face) && !FT_HAS_SVG(face)) ? FcTrue : FcFalse;
/*
* Find the appropriate picture format