Preserve third triplet in group

This commit is contained in:
Matthias Neeracher 2009-03-14 23:07:37 +00:00
parent 7086678c38
commit afc0a0dbc2

View File

@ -552,7 +552,8 @@ void VLMeasure::DecomposeNotes(const VLProperties & prop, VLNoteList & decompose
// //
// Second swing note (8th triplet -> 8th) // Second swing note (8th triplet -> 8th)
// //
p.fVisual &= ~VLNote::kTriplet; if (!prevTriplets)
p.fVisual &= ~VLNote::kTriplet;
} else if ((p.fDuration > kMinDuration) && } else if ((p.fDuration > kMinDuration) &&
((at % p.fDuration != 0) ((at % p.fDuration != 0)
|| (p.fDuration != c.fDuration || (p.fDuration != c.fDuration