schriftgestalt / Glyphs-Scripts

Some useful scripts to work with Glyphs
glyphsapp.com
114 stars 103 forks source link

Fix bug with RGlyph.getParent(); it always returned None #9

Closed jenskutilek closed 9 years ago

jenskutilek commented 9 years ago
from objectsGS import CurrentFont
font = CurrentFont()
glyph = font["aacute"]
print glyph.getParent()

This always printed "None" before, now it returns the RFont object

schriftgestalt commented 9 years ago

thanks