Skip to content

Commit

Permalink
fix musescore#16497: write articulation placement if available
Browse files Browse the repository at this point in the history
  • Loading branch information
asattely authored and RomanPudashkin committed Jul 12, 2023
1 parent 06bfbe5 commit ffcbee9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/importexport/musicxml/internal/musicxml/exportxml.cpp
Expand Up @@ -3134,8 +3134,11 @@ void ExportMusicXml::chordAttributes(Chord* chord, Notations& notations, Technic
_xml.startElementRaw(mxmlTechn + attr);
_xml.tag("natural");
_xml.endElement();
} else { // TODO: check additional modifier (attr) for other symbols
_xml.tagRaw(mxmlTechn);
} else {
if (placement != "") {
attr += QString(" placement=\"%1\"").arg(placement);
}
_xml.tagRaw(mxmlTechn + attr);
}
}
}
Expand Down

0 comments on commit ffcbee9

Please sign in to comment.