Skip to content

Commit

Permalink
fix #166566: Exchange voices with partial measure selected works all …
Browse files Browse the repository at this point in the history
…the way to end of score
  • Loading branch information
mattmcclinch committed Jul 6, 2018
1 parent e33bf2f commit c7ca735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/edit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2457,7 +2457,7 @@ void Score::cmdExchangeVoice(int s, int d)
return;

if (t2 > m2->tick())
m2 = 0;
m2 = m2->nextMeasure();

for (;;) {
undoExchangeVoice(m1, s, d, selection().staffStart(), selection().staffEnd());
Expand Down

0 comments on commit c7ca735

Please sign in to comment.