Skip to content

Commit

Permalink
Merge pull request #16633 from mikekirin/14633-implode-from-multiple-…
Browse files Browse the repository at this point in the history
…voices-accidentals

Fix #14633: implode from multiple voices accidentals.
  • Loading branch information
RomanPudashkin committed Mar 14, 2023
2 parents e5e6d89 + efc9a76 commit 8f2a6e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/engraving/libmscore/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3342,7 +3342,8 @@ void Score::cmdImplode()
if (dstChord->findNote(nv.pitch)) {
continue;
}
Note* nn = addNote(dstChord, nv);
bool forceAccidental = n->accidental() && n->accidental()->role() == AccidentalRole::USER;
Note* nn = addNote(dstChord, nv, forceAccidental);
// add tie to this note if original chord was tied
if (tied) {
// find note to tie to
Expand Down

0 comments on commit 8f2a6e9

Please sign in to comment.