Skip to content

Commit 9eadd90

Browse files
committed
freetypePen: fix bits for cubic on-curve
1 parent e1c3cdc commit 9eadd90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/fontTools/pens/freetypePen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
Contour = collections.namedtuple('Contour', ('points', 'tags'))
2626
LINE = 0b00000001
27-
CURVE = 0b00000011
27+
CURVE = 0b00000001
2828
OFFCURVE = 0b00000010
2929
QCURVE = 0b00000001
3030
QOFFCURVE = 0b00000000

0 commit comments

Comments
 (0)