This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
inter-font/misc/glyphs-scripts/clear-vertex-names.py
2020-04-04 10:43:27 -07:00

11 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