1
1
mirror of https://github.com/rsms/inter.git synced 2024-11-23 11:43:47 +03:00
inter/misc/glyphs-scripts/clear-vertex-names.py
2020-04-04 10:43:27 -07:00

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