From 0afea67e9943ee566eb52d7d0f95de5f8a358152 Mon Sep 17 00:00:00 2001 From: James Godfrey-Kittle Date: Wed, 2 Sep 2015 11:07:28 -0700 Subject: Don't use RGlyph.getParent. Apparently this method returns a different font than we expect in decomposeGlyph, probably due to the glyph copying we do when mixing masters. The easiest thing to do is just not trust or use the method. --- scripts/lib/fontbuild/mix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/lib/fontbuild/mix.py') diff --git a/scripts/lib/fontbuild/mix.py b/scripts/lib/fontbuild/mix.py index 443dfeb..519b50d 100644 --- a/scripts/lib/fontbuild/mix.py +++ b/scripts/lib/fontbuild/mix.py @@ -249,7 +249,7 @@ class Master: size = len(g) csize = len(g.components) if (size > 0 and csize > 0): - decomposeGlyph(g) + decomposeGlyph(self.font, g.name) if overlayPath != None: overlayFont = OpenFont(overlayPath) -- cgit v1.2.3