fix time signature properties scores

This commit is contained in:
lasconic 2014-07-26 09:08:44 +02:00
parent 5473249085
commit 98cfe578e4
2 changed files with 4 additions and 1 deletions

View file

@ -2826,6 +2826,9 @@ void Score::layoutLinear()
m->setEndBarLineType(BarLineType::START_REPEAT, m->endBarLineGenerated());
m->createEndBarLines();
w = m->minWidth1() * styleD(StyleIdx::linearStretch);
qreal minMeasureWidth = point(styleS(StyleIdx::minMeasureWidth));
if (w < minMeasureWidth)
w = minMeasureWidth;
m->layout(w);
}
else {

View file

@ -49,7 +49,7 @@ Score* NoteGroups::createScore(int n, TDuration::DurationType t, std::vector<Cho
}
c.score()->parts().front()->setLongName("");
c.score()->style()->set(StyleIdx::linearStretch, 1.1);
c.score()->style()->set(StyleIdx::linearStretch, 1.3);
return c.score();
}