Skip to content

Commit

Permalink
Update src/importexport/musicxml/internal/musicxml/export/exportmusic…
Browse files Browse the repository at this point in the history
…xml.cpp

Co-authored-by: James Mizen <jamesmmizen@gmail.com>
  • Loading branch information
pacebes and miiizen authored Feb 12, 2025
1 parent f5e25a6 commit 7f81834
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8246,7 +8246,10 @@ void ExportMusicXml::writeMeasureTracks(const Measure* const m,
spannerStop(this, starttrack, endtrack, seg->tick(), partRelStaffNo, spannersStopped);

// We check if there are also dynamic annotations
if (seg->findAnnotation(ElementType::DYNAMIC, strack, etrack - 1)) {
for (EngravingItem* annotation : seg->annotations()) {
if (annotation->track() != track || !annotation->isTextBase()) {
continue;
}
// Just to include them
annotations(this, strack, etrack, track, partRelStaffNo, seg);
}
Expand Down

0 comments on commit 7f81834

Please sign in to comment.