Skip to content

Commit

Permalink
fix #30566
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Aug 26, 2014
1 parent eff9f88 commit 85ee1dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libmscore/tie.cpp
Expand Up @@ -190,6 +190,10 @@ void Tie::slurPos(SlurPos* sp)
}
Chord* ec = endNote()->chord();
sp->system2 = ec->measure()->system();
if (!sp->system2) {
qDebug("Tie::slurPos no system2");
sp->system2 = sp->system1;
}
if ((ec->notes().size() > 1) || (ec->stem() && !ec->up() && !_up))
xo = endNote()->x() - hw * 0.12;
else if (shortStart)
Expand Down

0 comments on commit 85ee1dc

Please sign in to comment.