Skip to content

Commit 0b14610

Browse files
Merge pull request #18170 from Jojo-Schmitz/musicxml-expression-text
Fix GH#18166: All expression texts not exported to MusicXML
2 parents fd148ec + 6bb5a7e commit 0b14610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/importexport/musicxml/internal/musicxml/exportxml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5646,7 +5646,7 @@ static bool commonAnnotations(ExportMusicXml* exp, const EngravingItem* e, staff
56465646
} else if (e->isTempoText()) {
56475647
exp->tempoText(toTempoText(e), sstaff);
56485648
} else if (e->isPlayTechAnnotation() || e->isCapo() || e->isStaffText() || e->isSystemText() || e->isTripletFeel() || e->isText()
5649-
|| (e->isInstrumentChange() && e->visible())) {
5649+
|| e->isExpression() || (e->isInstrumentChange() && e->visible())) {
56505650
exp->words(toTextBase(e), sstaff);
56515651
} else if (e->isDynamic()) {
56525652
exp->dynamic(toDynamic(e), sstaff);

0 commit comments

Comments
 (0)