Nodes with Names [simple question]

I have a font that was started this December in Fontlab VI, and the .ufo has been imported into Glyphs (as I don’t intend to continue working in Fontlab). I see that the all the nodes have small tagged names (e.g. dv04, dv03, sh01, sh02, etc.) as you can see in the attached screenshot. I read through the Glyphs docs briefly last night, and tried searching for a way to hide (or remove) these node names… does anyone here know how to hide/remove these in Glyphs?

Thanks!

run this script in the macro window:

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

Thanks a ton, Georg.