aboutsummaryrefslogtreecommitdiff
path: root/Lib/fontTools/ttLib/woff2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/fontTools/ttLib/woff2.py')
-rw-r--r--Lib/fontTools/ttLib/woff2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/fontTools/ttLib/woff2.py b/Lib/fontTools/ttLib/woff2.py
index 75b55527..d088b70f 100644
--- a/Lib/fontTools/ttLib/woff2.py
+++ b/Lib/fontTools/ttLib/woff2.py
@@ -11,7 +11,7 @@ from fontTools.ttLib import (TTFont, TTLibError, getTableModule, getTableClass,
from fontTools.ttLib.sfnt import (SFNTReader, SFNTWriter, DirectoryEntry,
WOFFFlavorData, sfntDirectoryFormat, sfntDirectorySize, SFNTDirectoryEntry,
sfntDirectoryEntrySize, calcChecksum)
-from fontTools.ttLib.tables import ttProgram
+from fontTools.ttLib.tables import ttProgram, _g_l_y_f
import logging
@@ -934,7 +934,7 @@ class WOFF2GlyfTable(getTableClass('glyf')):
flags = array.array('B')
triplets = array.array('B')
for i in range(len(coordinates)):
- onCurve = glyph.flags[i]
+ onCurve = glyph.flags[i] & _g_l_y_f.flagOnCurve
x, y = coordinates[i]
absX = abs(x)
absY = abs(y)