Skip to content

Commit 70222c9

Browse files
Jojo-Schmitzvpereverzev
authored andcommitted
Fix wiggle arpeggio down vtest + collect_artifacts
by not using `SymId::wiggleArpeggiatoDownArrow` in a `symbolLine()` for an `ArpeggioType::DOWN`, but using the same line as for `ArpeggioType::UP`, just turned upside down.
1 parent 973e146 commit 70222c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libmscore/arpeggio.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ void Arpeggio::layout()
167167
break;
168168

169169
case ArpeggioType::DOWN: {
170-
symbolLine(SymId::wiggleArpeggiatoDownArrow, SymId::wiggleArpeggiatoDown);
171-
// string is rotated +90 degrees
170+
symbolLine(SymId::wiggleArpeggiatoUpArrow, SymId::wiggleArpeggiatoUp);
171+
// string is rotated +90 degrees (so that UpArrow turns into a DownArrow)
172172
QRectF r(symBbox(symbols));
173173
setbbox(QRectF(0.0, r.x() + y1, r.height(), r.width()));
174174
}

0 commit comments

Comments
 (0)