Clear out [–] minus error symbol after using Kink Finder script?

Toggled it to include the red minus ⊖ symbol to mark errors in the first layer, but now I can’t seem to remove them after fixing the kinks. Only shows up when in edit mode. Is there a way? I turned off kink-related reporters, and quit and reopened, but still present.

App v3525

To remove all node labels (if this is what you want):

for glyph in Font.glyphs:
    for layer in glyph.layers:
        for path in layer.paths:
            for node in path.nodes:
                node.name = None

Otherwise there’s also a Garbage Collector mekkablue script that offers the same functionality, I think.

1 Like

Yes, that’s it, the code worked. Thanks Sebastian!