Skip to content

Commit

Permalink
fix #20768 - relayout whole score, when exclude / include measure fro…
Browse files Browse the repository at this point in the history
…m count
  • Loading branch information
sammik authored and RomanPudashkin committed Jan 9, 2024
1 parent 48d5101 commit 284c822
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/engraving/dom/measurebase.cpp
Expand Up @@ -448,7 +448,11 @@ bool MeasureBase::setProperty(Pid id, const PropertyValue& value)
}
break;
}
triggerLayout();
if (id == Pid::IRREGULAR || id == Pid::NO_OFFSET) {
triggerLayoutAll();
} else {
triggerLayout();
}
score()->setPlaylistDirty();
return true;
}
Expand Down

0 comments on commit 284c822

Please sign in to comment.