I want to use diamond noteheads (available via these glyphs) with microtonal (quarter-tone) accidentals.
The only way I have found to create a note with a diamond notehead is via Flow.keyProperties(), and the way to get to that is by creating a StaveNote with keys.
I want to use diamond noteheads (available via these glyphs) with microtonal (quarter-tone) accidentals.
The only way I have found to create a note with a diamond notehead is via
Flow.keyProperties()
, and the way to get to that is by creating aStaveNote
withkeys
.But
Flow.keyProperties()
doesn't allow all the accidentals inFlow.accidentalCodes.accidentals
. It usesFlow.keyProperties.note_values
instead, which only allows chromatic accidentals.For example:
I was able to create notes with the microtonal accidentals via
EasyScore.notes()
. But that option doesn't accept a glyph code (for the diamond).So unless I'm missing something, it seems I can't have both.
I'd happily work on a PR, if you can confirm that functionality is missing.