9 lines
153 B
Python
Executable File
9 lines
153 B
Python
Executable File
from robofab.world import CurrentFont
|
|
|
|
myFont = CurrentFont()
|
|
|
|
mySel = myFont.selection
|
|
|
|
for myGlyph in mySel:
|
|
myFont[myGlyph].mark = 12
|
|
myFont.update() |