1
1
mirror of https://github.com/rsms/inter.git synced 2024-09-11 02:45:42 +03:00
This commit is contained in:
Rasmus Andersson 2018-11-26 08:57:13 -08:00
parent 30c1755165
commit 0eb9bd892f
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
delanchors = ['top_dd', 'top0315', 'bottom_dd']
font = Glyphs.font
font.disableUpdateInterface()
try:
for g in font.glyphs:
g.beginUndo()
try:
for master in font.masters:
layer = g.layers[master.id]
for aname in delanchors:
try:
del(layer.anchors[aname])
print("del %s in %s", aname, g.name)
except:
pass
finally:
g.endUndo()
finally:
font.enableUpdateInterface()