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.
2 parents 7c44b6b + 262788c commit 772de8cCopy full SHA for 772de8c
src/engraving/rendering/score/systemlayout.cpp
@@ -3026,6 +3026,9 @@ void SystemLayout::centerBigTimeSigsAcrossStaves(const System* system)
3026
continue;
3027
}
3028
staff_idx_t thisStaffIdx = timeSig->effectiveStaffIdx();
3029
+ if (thisStaffIdx == muse::nidx) {
3030
+ continue;
3031
+ }
3032
staff_idx_t nextStaffIdx = thisStaffIdx;
3033
for (staff_idx_t idx = thisStaffIdx + 1; idx < nstaves; ++idx) {
3034
TimeSig* nextTimeSig = toTimeSig(segment.element(staff2track(idx)));
0 commit comments