Skip to content

Commit

Permalink
fix #24557: Slur in bottom staff affects articulations in top
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 12, 2014
1 parent e52a4a1 commit c683735
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libmscore/chord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2214,6 +2214,10 @@ QPointF Chord::layoutArticulation(Articulation* a)
Spanner* sp = is.value;
if ((sp->type() != SLUR) || (sp->tick() != tick() && sp->tick2() != tick()))
continue;
if ( sp->tick() == tick() && sp->track() != track())
continue;
if ( sp->tick2() == tick() && sp->track2() != track())
continue;
Slur* s = static_cast<Slur*>(sp);
if (s->up())
topGap = true;
Expand Down

0 comments on commit c683735

Please sign in to comment.