fix time signature properties scores
This commit is contained in:
parent
5473249085
commit
98cfe578e4
2 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue