diff --git a/src/notation/internal/masternotation.cpp b/src/notation/internal/masternotation.cpp index 94981f719b46a..5585c5d4574f8 100644 --- a/src/notation/internal/masternotation.cpp +++ b/src/notation/internal/masternotation.cpp @@ -431,6 +431,12 @@ void MasterNotation::applyOptions(mu::engraving::MasterScore* score, const Score tt->setFollowText(true); tt->setTrack(0); seg->add(tt); + for (auto staff : score->getSystemObjectStaves()) { + TempoText* linkedTt = toTempoText(tt->linkedClone()); + linkedTt->setScore(score); + linkedTt->setTrack(staff->idx() * VOICES); + seg->add(linkedTt); + } } score->setUpTempoMap();