Skip to content

Commit

Permalink
Merge pull request musescore#18441 from asattely/aug-dot-bug
Browse files Browse the repository at this point in the history
Fix musescore#18440 - Delete augmentation dots when necessary
  • Loading branch information
RomanPudashkin authored Jul 6, 2023
2 parents 33139dc + 12446bb commit 9818d94
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/engraving/layout/v0/chordlayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2172,6 +2172,10 @@ void ChordLayout::placeDots(const std::vector<Chord*>& chords, const std::vector
if (c->dots() > 0) {
chord = c;
break;
} else {
for (Note* note : c->notes()) {
note->setDotRelativeLine(0); // this manages the deletion of dots
}
}
}
if (!chord || chord->staff()->isTabStaff(chord->tick())) {
Expand Down

0 comments on commit 9818d94

Please sign in to comment.