summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/fontbuild/decomposeGlyph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/fontbuild/decomposeGlyph.py b/scripts/lib/fontbuild/decomposeGlyph.py
index a098968..2d7537c 100644
--- a/scripts/lib/fontbuild/decomposeGlyph.py
+++ b/scripts/lib/fontbuild/decomposeGlyph.py
@@ -6,7 +6,7 @@ def decomposeGlyph(glyph):
componentGlyph = font[component.baseGlyph]
for contour in componentGlyph:
contour = contour.copy()
- contour.move(component.offset)
contour.scale(component.scale)
+ contour.move(component.offset)
glyph.appendContour(contour)
glyph.clear(contours=False, anchors=False, guides=False)