diff --git a/src/importexport/musicxml/internal/musicxml/export/exportmusicxml.cpp b/src/importexport/musicxml/internal/musicxml/export/exportmusicxml.cpp index 64398f02811df..26057875f5b96 100644 --- a/src/importexport/musicxml/internal/musicxml/export/exportmusicxml.cpp +++ b/src/importexport/musicxml/internal/musicxml/export/exportmusicxml.cpp @@ -3930,7 +3930,7 @@ static void writeNotehead(XmlWriter& xml, const Note* const note) xml.tagRaw(noteheadTagname, "other"); } - if (note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME + if (note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME || note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME_GERMAN || note->headScheme() == NoteHeadScheme::HEAD_SOLFEGE || note->headScheme() == NoteHeadScheme::HEAD_SOLFEGE_FIXED) { diff --git a/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp b/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp index b2c0f28ca09fc..99f8a945db9f8 100644 --- a/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp +++ b/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp @@ -6635,7 +6635,7 @@ Note* MusicXmlParserPass2::note(const String& partId, } if (noteheadText.size() == 1) { headScheme = (noteheadText == u"H") - ? NoteHeadScheme::HEAD_PITCHNAME_GERMAN : NoteHeadScheme::HEAD_PITCHNAME; + ? NoteHeadScheme::HEAD_PITCHNAME_GERMAN : NoteHeadScheme::HEAD_PITCHNAME; } else { headScheme = NoteHeadScheme::HEAD_SOLFEGE; }