reduce opsz range from 16-72 to 16-32

This commit is contained in:
Rasmus Andersson 2022-06-01 11:37:37 -07:00
parent 2c6517c249
commit b8c2a3000a
2554 changed files with 151503 additions and 10573 deletions

View file

@ -28,7 +28,7 @@ def fix_opsz_maximum(designspace):
for a in designspace.axes:
if a.tag == "opsz":
# TODO: find maximum by looking at the source
a.maximum = 72
a.maximum = 32
break
return designspace