The font contains glyphs with the same name: newGlyph

Is there any way to make a smart-filter that can show all the duplicate glyphs?

Unfortunately I can’t find them via the font overview, as the last thing I did was also updating all the glyph info of all glyphs. So now I can’t think of any workaround to find the duplicates, except looking for them one-by-one. The export report also only shows the first duplicate.

thx

Run the following code from the Macro panel (WindowMacro Panel):

names = set()
duplicates = set()
for glyph in Font.glyphs:
	name = glyph.name
	if name in names:
		duplicates.add(name)
	names.add(name)
print(duplicates)
1 Like

thank you! It seems to work!

How is the development for multiple components with bracket layers going?

Will we have to work with rvrn instead of bracket layer, if we puzzle together a font with lots of bracket layers in components?