summaryrefslogtreecommitdiff
path: root/misc/glyphs-scripts/clear-vertex-names.py
blob: 14fdada5452cf21abcf4f66d7a8871c2d9677166 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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