Skip to content

Commit

Permalink
Fix wiggle arpeggio down vtest + collect_artifacts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jojo-Schmitz authored and vpereverzev committed Oct 23, 2020
1 parent 973e146 commit 70222c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libmscore/arpeggio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ void Arpeggio::layout()
break;

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

0 comments on commit 70222c9

Please sign in to comment.