Skip to content

Commit

Permalink
find segments in adjacent measures if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
miiizen committed Feb 20, 2025
1 parent 3c480ec commit 74c4e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engraving/rendering/score/slurtielayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1858,9 +1858,9 @@ void SlurTieLayout::setPartialTieEndPos(PartialTie* item, SlurTiePos& sPos)
return;
}

const Segment* adjSeg = outgoing ? seg->next() : seg->prev();
const Segment* adjSeg = outgoing ? seg->next1() : seg->prev1();
while (adjSeg && (!adjSeg->isActive() || !adjSeg->enabled())) {
adjSeg = outgoing ? seg->next() : seg->prev();
adjSeg = outgoing ? seg->next1() : seg->prev1();
}

double widthToSegment = 0.0;
Expand Down

0 comments on commit 74c4e8b

Please sign in to comment.