Skip to content

Commit

Permalink
Fix #GH16497: write articulation placement if available
Browse files Browse the repository at this point in the history
Backport of musescore#18556, part 1 resp. musescore#17033
  • Loading branch information
asattely authored and Jojo-Schmitz committed Nov 7, 2023
1 parent ceae337 commit f2c0d4e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions importexport/musicxml/exportxml.cpp
Expand Up @@ -3064,8 +3064,11 @@ void ExportMusicXml::chordAttributes(Chord* chord, Notations& notations, Technic
_xml.tagE("natural");
_xml.etag();
}
else // TODO: check additional modifier (attr) for other symbols
_xml.tagE(mxmlTechn);
else {
if (placement != "")
attr += QString(" placement=\"%1\"").arg(placement);
_xml.tagE(mxmlTechn + attr);
}
}
}

Expand Down

0 comments on commit f2c0d4e

Please sign in to comment.