Skip to content

Commit

Permalink
Merge pull request #781 from googlefonts/issue606
Browse files Browse the repository at this point in the history
Fix AttributeError with external new glyphs
  • Loading branch information
justvanrossum authored Sep 6, 2023
2 parents ee033ed + 50ae9a3 commit d246810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/backends/designspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ async def watchExternalChanges(self):

for glyphName in changedItems.newGlyphs:
try:
glifData = self.defaultSourceGlyphSet.getGLIF(glyphName)
glifData = self.defaultDSSource.layer.glyphSet.getGLIF(glyphName)
except KeyError:
logger.info(f"new glyph '{glyphName}' not found in default source")
continue
Expand Down

0 comments on commit d246810

Please sign in to comment.