Skip to content

Commit

Permalink
[rcjkTools] Ignore incomplete masters
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Jan 3, 2024
1 parent 9aaa597 commit 6f8778c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rcjkTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ def glyphMasters(glyph):
for source in glyph.sources:
if source.inactive:
continue
if not source.customData["fontra.development.status"]:
continue
locationTuple = tuplifyLocation(source.location)
assert locationTuple not in masters, locationTuple
masters[locationTuple] = glyph.layers[source.layerName]
Expand Down

0 comments on commit 6f8778c

Please sign in to comment.