From c384709c0a314f4aaf3ec72669188668464e2048 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 27 May 2024 16:11:58 -0600 Subject: [PATCH] [CFF2ToCFF] Convert FD's to CFF1 Makes ftview like the font, but still not ttx. --- Lib/fontTools/cffLib/CFF2ToCFF.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/fontTools/cffLib/CFF2ToCFF.py b/Lib/fontTools/cffLib/CFF2ToCFF.py index 505656a5d..6002069a2 100644 --- a/Lib/fontTools/cffLib/CFF2ToCFF.py +++ b/Lib/fontTools/cffLib/CFF2ToCFF.py @@ -35,6 +35,7 @@ def _convertCFF2ToCFF(cff, otFont): topDictData = TopDictIndex(None) for item in cff.topDictIndex: # Iterate over, such that all are decompiled + item.cff2GetGlyphOrder = None topDictData.append(item) cff.topDictIndex = topDictData topDict = topDictData[0]