Skip to content

Commit

Permalink
fix #21608: Multi-voice notes in the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Jun 26, 2013
1 parent 360fe58 commit 723bcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/measure.cpp
Expand Up @@ -1789,11 +1789,11 @@ void Measure::read(XmlReader& e, int staffIdx)
segment->add(barLine);
}
else if (tag == "Chord") {
segment = getSegment(Segment::SegChordRest, e.tick());

Chord* chord = new Chord(score());
chord->setTrack(e.track());
chord->read(e);
segment = getSegment(Segment::SegChordRest, e.tick());

if (chord->noteType() != NOTE_NORMAL)
graceNotes.push_back(chord);
Expand Down

0 comments on commit 723bcbd

Please sign in to comment.