From cf92625df57b6e2fcdb1574b6971c9a859ebff49 Mon Sep 17 00:00:00 2001 From: Mark Kim Date: Sat, 3 Dec 2022 12:01:22 -0500 Subject: [PATCH] enable forked fonts on macOS --- docs/CHANGES.txt | 10 ++++++++++ src/fonts.h | 3 --- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 39d6305f9..5b9f5ab4d 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -186,6 +186,16 @@ http://www.tuxpaint.org/ https://sourceforge.net/p/tuxpaint/bugs/265/ Mark Kim + * More fonts for the text and label tools on the macOS. + Enabled forked fonts so more fonts are available for use with the text + and label tools on the macOS. This is particularly noticible with + localized fonts because only a few localized fonts may exist on the + system so missing even a single font can lead to inability to type in a + localized language at all. It's unclear why forked fonts were disabled + to start on the macOS but it appears to be reliable now so it's now been + enabled to take advantage of its benefits. + Mark Kim + * Documentation updates: --------------------- * New "Quickstart Guide" document added. diff --git a/src/fonts.h b/src/fonts.h index bab1f6cc9..c0ffd3ac5 100644 --- a/src/fonts.h +++ b/src/fonts.h @@ -31,9 +31,6 @@ #if defined(WIN32) || defined(__BEOS__) #undef FORKED_FONTS #endif -#ifdef __APPLE__ -#undef FORKED_FONTS -#endif #ifdef __ANDROID__ #undef FORKED_FONTS #endif