Skip to content

Commit

Permalink
fix #136406: Non-Reduced ratio tuplets of full measure duration not c…
Browse files Browse the repository at this point in the history
…opy-pastable
  • Loading branch information
lasconic committed Oct 9, 2016
1 parent 1dcaa1b commit f7cb227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/tuplet.cpp
Expand Up @@ -694,7 +694,7 @@ void Tuplet::read(XmlReader& e)
else if (!DurationElement::readProperties(e))
e.unknown();
}
Fraction f(_ratio.denominator(), _baseLen.fraction().denominator());
Fraction f(_ratio.reduced().denominator(), _baseLen.fraction().denominator());
setDuration(f);
if (bl != -1) { // obsolete
TDuration d;
Expand Down

0 comments on commit f7cb227

Please sign in to comment.