Changeset 199
- Timestamp:
- 06/26/09 08:24:44 (9 months ago)
- Files:
-
- trunk/Lib/robofab/objects/objectsFL.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Lib/robofab/objects/objectsFL.py
r198 r199 419 419 # copy the existing mask data first 420 420 existingMask = getGlyphFromMask(targetGlyph) 421 pen = FLPointContourPen(existingMask) 422 existingMask.drawPoints(pen) 421 if existingMask is not None: 422 pen = FLPointContourPen(existingMask) 423 existingMask.drawPoints(pen) 423 424 pen = FLPointContourPen(wrapped) 424 425 maskGlyph.drawPoints(pen) # draw the data
