fix #27966: volta end hooks missing from 1.3 scores

restore comment
This commit is contained in:
Marc Sabatella 2014-07-22 21:03:48 -06:00
parent 010d3957f0
commit f9a5d67461

View file

@ -229,8 +229,11 @@ void Volta::read(XmlReader& e)
setLineWidth(Spatium(e.readDouble()));
lineWidthStyle = PropertyStyle::UNSTYLED;
}
else if (tag == "subtype") // obsolete
e.readInt();
else if (tag == "subtype") { // obsolete
int st = e.readInt();
if (st == 1)
setEndHook(true);
}
else if (!TextLine::readProperties(e))
e.unknown();
}