From 88284b666f966942668d530cf04f2749970a6db4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Fleury Date: Fri, 17 Oct 2014 00:45:31 -0400 Subject: [PATCH] fix #32911: Tempo marking added by the New Score Wizard doesn't follow text --- mscore/file.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mscore/file.cpp b/mscore/file.cpp index 9640d88713f5e..b09dd913889cd 100644 --- a/mscore/file.cpp +++ b/mscore/file.cpp @@ -747,6 +747,7 @@ void MuseScore::newFile() tempo /= 60; // bpm -> bps tt->setTempo(tempo); + tt->setFollowText(true); tt->setTrack(0); Segment* seg = score->firstMeasure()->first(Segment::Type::ChordRest); seg->add(tt);