1
1
mirror of https://github.com/rsms/inter.git synced 2024-10-26 12:39:40 +03:00
inter/misc/rf-scripts/RemoveLocalGuides.py
2017-08-22 02:23:08 -07:00

16 lines
369 B
Python

#
# Removes local guides from all glyphs
#
if __name__ == "__main__":
font = CurrentFont()
print "Removing local guides from all glyphs of %r" % font
if font is not None:
for g in font:
if 'com.typemytype.robofont.guides' in g.lib:
del(g.lib['com.typemytype.robofont.guides'])
font.update()
else:
print "No fonts open"
print "Done"