fix #18453: C major Key Signature get lost in nightlies if exported from concert pitch in 1.3

This commit is contained in:
lasconic 2013-11-22 20:02:39 +01:00
parent d5e8e5f0be
commit 2b0cd5c897

View file

@ -390,7 +390,7 @@ void KeySig::read(XmlReader& e)
else if (!Element::readProperties(e))
e.unknown();
}
if (_sig.invalid() && subtype)
if (_sig.invalid())
_sig.initFromSubtype(subtype); // for backward compatibility
}