11 lines
222 B
Python
11 lines
222 B
Python
#MenuTitle: Remove all vertex names
|
|
# -*- coding: utf-8 -*-
|
|
import GlyphsApp
|
|
|
|
Font = Glyphs.font
|
|
selectedLayers = Font.selectedLayers
|
|
|
|
for l in selectedLayers:
|
|
for p in l.paths:
|
|
for n in p.nodes:
|
|
n.name = None
|