NoteWorthy Composer Forum

Forums => Tips & Tricks => User Tools => Topic started by: hmmueller on 2017-08-07 07:12 am

Title: Grace notes in adp_Parts
Post by: hmmueller on 2017-08-07 07:12 am
"Grace chords" are not modified by adp_Parts, as line 530 is
Code: [Select · Download]
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
Code: [Select · Download]
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.