mirror of
https://github.com/rsms/inter.git
synced 2024-12-13 12:14:53 +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
|