Skip to content

Commit

Permalink
use correct NoteHeadScheme
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Dec 25, 2024
1 parent 7a67e6c commit 87f6df7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6637,7 +6637,7 @@ Note* MusicXmlParserPass2::note(const String& partId,
headScheme = (noteheadText == u"H")
? NoteHeadScheme::HEAD_PITCHNAME_GERMAN : NoteHeadScheme::HEAD_PITCHNAME;
} else {
headScheme = NoteHeadScheme::HEAD_SOLFEGE;
headScheme = NoteHeadScheme::HEAD_SOLFEGE_FIXED;
}
} else if (m_e.name() == "rest") {
rest = true;
Expand Down

0 comments on commit 87f6df7

Please sign in to comment.