Skip to content

Commit

Permalink
[instancer] Fix name decision-making
Browse files Browse the repository at this point in the history
All limits are tuple these days.
  • Loading branch information
behdad committed May 14, 2024
1 parent 9f51fac commit 969d09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/fontTools/varLib/instancer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,7 @@ def main(args=None):
)

isFullInstance = {
axisTag for axisTag, limit in axisLimits.items() if not isinstance(limit, tuple)
axisTag for axisTag, limit in axisLimits.items() if limit[0] == limit[2]
}.issuperset(axis.axisTag for axis in varfont["fvar"].axes)

instantiateVariableFont(
Expand Down

0 comments on commit 969d09d

Please sign in to comment.