Skip to content

Commit

Permalink
fix #31451
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Oct 22, 2014
1 parent 45f4a6e commit 8019c28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libmscore/layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2856,6 +2856,7 @@ void Score::layoutSystems()
Element::Type t = curMeasure->type();
if (t == Element::Type::VBOX || t == Element::Type::TBOX || t == Element::Type::FBOX) {
System* system = getNextSystem(false, true);
system->setSameLine(false);
foreach(SysStaff* ss, *system->staves())
delete ss;
system->staves()->clear();
Expand Down Expand Up @@ -3154,7 +3155,7 @@ void Score::layoutPages()
bmargin = pC.bm();
}

tmargin = qMax(tmargin, pC.prevDist);
tmargin = qMax(tmargin, pC.prevDist);


qreal h = pC.sr.height();
Expand Down

0 comments on commit 8019c28

Please sign in to comment.