diff --git a/Lib/cu2qu/ufo.py b/Lib/cu2qu/ufo.py index d7b914a50..3ef899dac 100644 --- a/Lib/cu2qu/ufo.py +++ b/Lib/cu2qu/ufo.py @@ -113,6 +113,8 @@ def _set_segments(glyph, segments, reverse_direction): pen.moveTo(*args) elif tag == 'line': pen.lineTo(*args) + elif tag == 'curve': + pen.curveTo(*args[1:]) elif tag == 'qcurve': pen.qCurveTo(*args[1:]) elif tag == 'close':