Skip to content

Commit

Permalink
Merge pull request #3893 from lasconic/fix-274754
Browse files Browse the repository at this point in the history
fix #274754: Crash when opening score with fermata. Assign fermata to correct voice
  • Loading branch information
anatoly-os committed Aug 23, 2018
2 parents 27ac04c + 48bd45a commit e44ec5a
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 e44ec5a

Please sign in to comment.