Skip to content

Commit 12446bb

Browse files
committed
small bugfix for aug dot deletion
1 parent 12f6b39 commit 12446bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/engraving/layout/v0/chordlayout.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2172,6 +2172,10 @@ void ChordLayout::placeDots(const std::vector<Chord*>& chords, const std::vector
21722172
if (c->dots() > 0) {
21732173
chord = c;
21742174
break;
2175+
} else {
2176+
for (Note* note : c->notes()) {
2177+
note->setDotRelativeLine(0); // this manages the deletion of dots
2178+
}
21752179
}
21762180
}
21772181
if (!chord || chord->staff()->isTabStaff(chord->tick())) {

0 commit comments

Comments
 (0)