Closed bwbohl closed 4 years ago
When defining global header styles any …Def element may be nested within any …Styles element, e.g.
<performance name="one"> <global> <header> <articulationStyles> <styleDef> <accentuationPatternDef></accentuationPatternDef> </styleDef> </articulationStyles> </header> </global> </performance>
This should be fixed to allow only the correct type of Def, e.g. articulationDef in articulationStyles:
<performance name="one"> <global> <header> <articulationStyles> <styleDef> <articulationDef></articulationDef> </styleDef> </articulationStyles> </header> </global> </performance>
Agree!
Done
When defining global header styles any …Def element may be nested within any …Styles element, e.g.
This should be fixed to allow only the correct type of Def, e.g. articulationDef in articulationStyles: