quartz-font: Fix transposed constants

kCTFontColorGlyphsTrait is available in Mac OS X 10.7 and later.
kCTFontTraitColorGlyphs is available in OS X 10.8 and later.

Fixes build failure on Mac OS X 10.7.

Closes #810
This commit is contained in:
Ryan Schmidt 2023-10-24 01:42:38 -05:00
parent f9de19ad74
commit 85f021b1f1

View file

@ -77,10 +77,10 @@ static const CGFloat font_scale = 1.0;
#if MAC_OS_X_VERSION_MIN_REQUIRED < 1080
#define FONT_ORIENTATION_HORIZONTAL kCTFontHorizontalOrientation
#define FONT_COLOR_GLYPHS kCTFontTraitColorGlyphs
#define FONT_COLOR_GLYPHS kCTFontColorGlyphsTrait
#else
#define FONT_ORIENTATION_HORIZONTAL kCTFontOrientationHorizontal
#define FONT_COLOR_GLYPHS kCTFontColorGlyphsTrait
#define FONT_COLOR_GLYPHS kCTFontTraitColorGlyphs
#endif
static void