From 87f6df7a93f8b7a1206ac250e66d81f98a152a91 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Wed, 25 Dec 2024 20:18:07 +0100 Subject: [PATCH] use correct NoteHeadScheme --- .../musicxml/internal/musicxml/import/importmusicxmlpass2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp b/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp index 99f8a945db9f8..ffe2d734fd36c 100644 --- a/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp +++ b/src/importexport/musicxml/internal/musicxml/import/importmusicxmlpass2.cpp @@ -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;