Delete TTF Zone- & Stem-Deltas

Hello,

I’m copying masters’ custom parameters TTFZones and TTFStems to another font and still the Delta is highlighted blue – while none is showing up. I’d like to delete all at once, tabula rasa. How can I do it?

[Version 2.6.3 (1271)]

Thank you!
Christoph

This script should get you started:

master = Font.masters[0]
stems = master.customParameters["TTFStems"]
for stem in stems:
	print(stem, stem.delta())
	stem.setDelta_(None)

When you remove the last line, you might be able to fix the keys in the dict to match the new instances.

Thanks, mate. Perfect!