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