Skip to content

Commit d4ae271

Browse files
committed
fix #25616: Rehearsal mark from MuseScore 1.3 causes bad layout and crash
1 parent 142e82a commit d4ae271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libmscore/element.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ bool Element::readProperties(XmlReader& e)
736736
}
737737
else if (tag == "tick") {
738738
int val = e.readInt();
739-
if (val >= 0 && type() != SYMBOL && (type() != GLISSANDO || score()->mscVersion() > 114)) // hack for 1.2
739+
if (val >= 0 && type() != SYMBOL && ((type() != GLISSANDO && type() != FINGERING) || score()->mscVersion() > 114)) // hack for 1.2
740740
e.setTick(score()->fileDivision(val));
741741
}
742742
else if (tag == "offset")

0 commit comments

Comments
 (0)