Skip to content

Commit

Permalink
Fix Cubase XML chord symbol import
Browse files Browse the repository at this point in the history
Follow up to #24915
  • Loading branch information
Jojo-Schmitz committed Sep 29, 2024
1 parent 5fd9c73 commit bdba150
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7434,7 +7434,8 @@ void MusicXMLParserPass2::harmony(const String& partId, Measure* measure, const
} else if (m_e.name() == "bass-alter") {
// attributes: print-object, print-style
// location (left-right)
alter = m_e.readInt();
// Cubase exports this value with a trailing newline
alter = m_e.readText().simplified().toInt();
} else {
skipLogCurrElem();
}
Expand Down

0 comments on commit bdba150

Please sign in to comment.