Skip to content

Commit

Permalink
fix #274754: Crash when opening score with fermata. Assign fermata to…
Browse files Browse the repository at this point in the history
… correct voice
  • Loading branch information
lasconic committed Aug 23, 2018
1 parent be5ebbc commit 48bd45a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/read206.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,7 @@ Element* readArticulation(ChordRest* cr, XmlReader& e)
el = new Fermata(sym, cr->score());
setFermataPlacement(el, anchor, direction);
}
el->setTrack(cr->staffIdx() * VOICES);
el->setTrack(cr->track());
return el;
}

Expand Down

0 comments on commit 48bd45a

Please sign in to comment.