fix #279172: skip <timeStretch> correctly if not handled on 2.X import
This commit is contained in:
parent
116866dab7
commit
f4d8604865
1 changed files with 4 additions and 0 deletions
|
@ -2482,6 +2482,10 @@ Element* readArticulation(ChordRest* cr, XmlReader& e)
|
|||
else if (tag == "timeStretch") {
|
||||
if (el && el->isFermata())
|
||||
el->setProperty(Pid::TIME_STRETCH ,e.readDouble());
|
||||
else {
|
||||
qDebug("line %lld: read206: skipping <timeStretch>", e.lineNumber());
|
||||
e.skipCurrentElement();
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!el) {
|
||||
|
|
Loading…
Reference in a new issue