1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
|
for (st = 0; st < nstaff; st++)
par_sy.staves[st].flags ^= STOP_BAR
}
nv = voice_tb.length
for (v = 0; v < nv; v++) {
p_voice = voice_tb[v]
st = p_voice.st
// if first staff system,
// - move the first %%staves to the top voice
// - update the staff of the symbols with no width
if (no_sym) {
s = p_voice.sym
if (s && s.type == C.STAVES
|
>
|
>
>
|
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
|
for (st = 0; st < nstaff; st++)
par_sy.staves[st].flags ^= STOP_BAR
}
nv = voice_tb.length
for (v = 0; v < nv; v++) {
p_voice = voice_tb[v]
if (par_sy.voices[v])
st = p_voice.st
else
p_voice.st = st // (this avoids later crashes)
// if first staff system,
// - move the first %%staves to the top voice
// - update the staff of the symbols with no width
if (no_sym) {
s = p_voice.sym
if (s && s.type == C.STAVES
|