Skip to content

Commit

Permalink
fix #21609: 1.3 score featuring time signature appearing before clef
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Jun 21, 2013
1 parent b4772a6 commit 1e60c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/element.cpp
Expand Up @@ -706,7 +706,7 @@ bool Element::readProperties(XmlReader& e)
}
else if (tag == "tick") {
int val = e.readInt();
if (type() != SYMBOL && type() != TEMPO_TEXT && (type() != GLISSANDO || score()->mscVersion() > 114)) // hack for 1.2
if (val >= 0 && type() != SYMBOL && type() != TEMPO_TEXT && (type() != GLISSANDO || score()->mscVersion() > 114)) // hack for 1.2
e.setTick(score()->fileDivision(val));
}
else if (tag == "offset") { // ??obsolete -> used for volta
Expand Down

0 comments on commit 1e60c97

Please sign in to comment.