We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60f112d commit 563ac14Copy full SHA for 563ac14
src/engraving/dom/edit.cpp
@@ -1612,6 +1612,13 @@ void Score::cmdRemoveTimeSig(TimeSig* ts)
1612
if (rs) {
1613
rScore->undoRemoveElement(rs);
1614
}
1615
+ // Measure can contain mmRest that can have its own timesig. We need to delete it too
1616
+ if (rm->mmRest()) {
1617
+ Segment* mmRestTimesig = rm->mmRest()->findSegment(SegmentType::TimeSig, s->tick());
1618
+ if (mmRestTimesig) {
1619
+ rScore->undoRemoveElement(mmRestTimesig);
1620
+ }
1621
1622
1623
Measure* pm = m->prevMeasure();
1624
Fraction ns(pm ? pm->timesig() : Fraction(4, 4));
0 commit comments