fix #276684: always display nominal time signature after adding staves

This commit is contained in:
Dmitri Ovodok 2018-11-20 11:02:14 +02:00
parent 6ba431b68d
commit eeb18fa57c

View file

@ -1142,9 +1142,9 @@ void Measure::cmdAddStaves(int sStaff, int eStaff, bool createRest)
} }
} }
if (!ots) { if (!ots) {
// no time signature found; use measure length to construct one // no time signature found; use measure timesig to construct one
ots = new TimeSig(score()); ots = new TimeSig(score());
ots->setSig(len()); ots->setSig(timesig());
constructed = true; constructed = true;
} }
// do no replicate local time signatures // do no replicate local time signatures