We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142e82a commit d4ae271Copy full SHA for d4ae271
libmscore/element.cpp
@@ -736,7 +736,7 @@ bool Element::readProperties(XmlReader& e)
736
}
737
else if (tag == "tick") {
738
int val = e.readInt();
739
- if (val >= 0 && type() != SYMBOL && (type() != GLISSANDO || score()->mscVersion() > 114)) // hack for 1.2
+ if (val >= 0 && type() != SYMBOL && ((type() != GLISSANDO && type() != FINGERING) || score()->mscVersion() > 114)) // hack for 1.2
740
e.setTick(score()->fileDivision(val));
741
742
else if (tag == "offset")
0 commit comments