Last active
August 29, 2015 14:19
-
-
Save marcdama/bd05d811d5871bc18d5c to your computer and use it in GitHub Desktop.
FL: From selected Glyphs: Highlight Component Glyphs used to build the selected glyphs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from robofab.world import * | |
| f = CurrentFont() | |
| g = f.selection[0] | |
| for i in f: | |
| for j in i.components: | |
| if j.baseGlyph == g: | |
| i.mark = 1 | |
| f.update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment