Skip to content

Commit

Permalink
Fix marker not linked in parts over MM-rests
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-spa committed Feb 28, 2025
1 parent 6491f45 commit cb71fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engraving/rendering/score/measurelayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ void MeasureLayout::createMMRest(LayoutContext& ctx, Measure* firstMeasure, Meas
}
}
if (!found) {
mmrMeasure->add(e->clone());
mmrMeasure->add(e->isLayoutBreak() ? e->clone() : e->linkedClone());
}
}
for (EngravingItem* e : oldList) {
Expand Down

0 comments on commit cb71fda

Please sign in to comment.