Skip to content

Commit

Permalink
fix #17563: Scores with pickup measure have last bar wih wrong beat n…
Browse files Browse the repository at this point in the history
…umber.
  • Loading branch information
lasconic committed Jul 28, 2012
1 parent 45eb073 commit 075f8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/newwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ Fraction TimesigWizard::timesig() const
bool TimesigWizard::pickup(int* z, int* n) const
{
*z = pickupTimesigZ->value();
*n = 1 << timesigN->currentIndex();
*n = 1 << pickupTimesigN->currentIndex();
return pickupMeasure->isChecked();
}

Expand Down

0 comments on commit 075f8f9

Please sign in to comment.