Skip to content

Commit

Permalink
Fix #297444: Hairpin attached to note other than in voice 1 in score …
Browse files Browse the repository at this point in the history
…appears on wrong part
  • Loading branch information
mattmcclinch committed Sep 11, 2020
1 parent 31b0c0b commit a90cd00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libmscore/excerpt.cpp
Expand Up @@ -816,7 +816,8 @@ void Excerpt::cloneStaves(Score* oscore, Score* score, const QList<int>& map, QM
//always export these spanners to first voice of the destination staff

QList<int> track1;
for (int ii = s->track(); ii < s->track() + VOICES; ii++) {
int strack = s->staffIdx() * VOICES;
for (int ii = strack; ii < strack + VOICES; ii++) {
track1 += trackList.values(ii);
}

Expand Down

0 comments on commit a90cd00

Please sign in to comment.