Initial public commit

This commit is contained in:
Rasmus Andersson 2017-08-22 00:05:20 -07:00
commit 3b1fffade1
6648 changed files with 363948 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#
# 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"