Skip to content

Commit

Permalink
Merge pull request #15947 from Jojo-Schmitz/G-clef
Browse files Browse the repository at this point in the history
Fix #342825: MusicXML import: G-Clef 15ma bassa imports as G-Clef
  • Loading branch information
RomanPudashkin authored Mar 14, 2023
2 parents 74bff90 + 7fb6297 commit c3a498e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3851,6 +3851,8 @@ void MusicXMLParserPass2::clef(const QString& partId, Measure* measure, const Fr
clef = ClefType::G15_MA;
} else if (c == "G" && i == -1 && line == 2) {
clef = ClefType::G8_VB;
} else if (c == "G" && i == -2 && line == 2) {
clef = ClefType::G15_MB;
} else if (c == "G" && i == 0 && line == 1) {
clef = ClefType::G_1;
} else if (c == "F" && i == 0 && line == 3) {
Expand Down

0 comments on commit c3a498e

Please sign in to comment.