Skip to content

Commit 0bc5ff5

Browse files
committed
Merge pull request #2236 from MarcSabatella/81371
fix #81371: crash/hang with frames at end of score
2 parents 7885daf + d462382 commit 0bc5ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libmscore/layout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2815,7 +2815,7 @@ QList<System*> Score::layoutSystemRow(qreal rowWidth, bool isFirstSystem, bool u
28152815
if (curMeasure)
28162816
curMeasure = curMeasure->prev();
28172817
else
2818-
curMeasure = lastMeasure();
2818+
curMeasure = last();
28192819
}
28202820
firstInRow = false;
28212821
}

0 commit comments

Comments
 (0)