Skip to content

Commit

Permalink
fix #175346: Cannot enter special characters into tempo change
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 20, 2017
1 parent 3340d62 commit d0c9e4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mscore/menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1613,12 +1613,15 @@ void MuseScore::addTempo()
}

TempoText* tt = new TempoText(cs);
cs->startCmd();
tt->setParent(cr->segment());
tt->setTrack(0);
tt->setXmlText(text);
tt->setFollowText(true);
//tt->setTempo(bps);
cs->undoAddElement(tt);
cs->select(tt, SelectType::SINGLE, 0);
cs->endCmd();
cv->startEdit(tt);
}

Expand Down

0 comments on commit d0c9e4f

Please sign in to comment.