1
1
mirror of https://github.com/rsms/inter.git synced 2024-12-13 12:14:53 +03:00
inter/misc/glyphs-scripts/clear-vertex-names.py

12 lines
222 B
Python
Raw Normal View History

2020-04-04 20:43:27 +03:00
#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