Skip to content

Commit

Permalink
Fix reading of key signature on Mu4 import
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Sep 26, 2023
1 parent 976f0ba commit 0957364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/keysig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ void KeySig::read(XmlReader& e)
_showCourtesy = e.readInt();
else if (tag == "showNaturals") // obsolete
e.readInt();
else if (tag == "accidental")
else if (tag == "accidental" || tag == "concertKey") // + 4.x compat
_sig.setKey(Key(e.readInt()));
else if (tag == "natural") // obsolete
e.readInt();
Expand Down

0 comments on commit 0957364

Please sign in to comment.