mirror of
https://github.com/rsms/inter.git
synced 2024-11-23 11:43:47 +03:00
12 lines
222 B
Python
12 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
|