We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823abbf commit 7db5622Copy full SHA for 7db5622
1 file changed
Batch.roboFontExt/lib/variableFontGenerator/__init__.py
@@ -424,6 +424,7 @@ def makeMasterGlyphsCompatible(self):
424
defaultMaster.newGlyph(glyphName)
425
glyph = defaultMaster[glyphName]
426
result.extractGlyph(glyph, onlyGeometry=True)
427
+ glyph.unicodes = list(result.unicodes)
428
429
glyphs = []
430
# fill all masters with missing glyphs
@@ -461,6 +462,7 @@ def makeMasterGlyphsCompatible(self):
461
462
# add the glyph to the master
463
master.newGlyph(glyphName)
464
result.extractGlyph(master[glyphName], onlyGeometry=True)
465
466
glyphs.append(master[glyphName])
467
# optimize glyph contour data from all masters
468
self.makeGlyphOutlinesCompatible(glyphs)
0 commit comments