Skip to content

Commit 3270ee0

Browse files
MarcSabatellalasconic
authored andcommittedSep 27, 2015
fix #81371: crash/hang with frames at end of score

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎libmscore/layout.cpp

+1-1
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)
Please sign in to comment.