Grace notes in adp_Parts
"Grace chords" are not modified by adp_Parts, as line 530 is
elseif ($oType == "Rest" || !timeTaken($o)) // don't filter on rests or grace notes
For splitting my particells into orchestral voices, this is a small nuisance. I just changed the line to
elseif ($oType == "Rest") // don't filter on rests
... so far it seems to do what I want. Does anyone know whether there is some problem with this change (e.g. wrong computation of durations? ... but I will never have grace rest chords, I promise)
H.M.