We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39333f5 commit 2b89ce0Copy full SHA for 2b89ce0
1 file changed
Batch.roboFontExt/lib/variableFontGenerator/__init__.py
@@ -462,9 +462,9 @@ def makeMasterGlyphsCompatible(self):
462
# add the glyph to the master
463
master.newGlyph(glyphName)
464
glyph = master[glyphName]
465
- result.extractGlyph(master[glyphName], onlyGeometry=True)
+ result.extractGlyph(glyph, onlyGeometry=True)
466
glyph.unicodes = list(result.unicodes)
467
- glyphs.append(master[glyphName])
+ glyphs.append(glyph)
468
# optimize glyph contour data from all masters
469
self.makeGlyphOutlinesCompatible(glyphs)
470
if getDefault("Batch.Debug", False):
0 commit comments