Skip to content

Commit

Permalink
fix #14548
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Oct 8, 2014
1 parent 3855d63 commit abf6441
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libmscore/measure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2065,10 +2065,9 @@ void Measure::read(XmlReader& e, int staffIdx)
// if 'real' time sig., do full process
segment = getSegment(Segment::Type::TimeSig, currTick);
segment->add(ts);
timeStretch = ts->stretch().reduced();

if (_timesig != ts->sig() / timeStretch)
_timesig = ts->sig() / timeStretch;
timeStretch = ts->stretch().reduced();
_timesig = ts->sig() / timeStretch;

if (score()->mscVersion() > 114) {
if (irregular) {
Expand Down

0 comments on commit abf6441

Please sign in to comment.