1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
|
}
}
// check if a clef, key or time signature may go at start of the current voice
function is_voice_sig() {
var s
// if (!curvoice.sym)
// return true // new voice (may appear in the middle of a tune)
if (curvoice.time)
return false
for (s = curvoice.last_sym; s; s = s.prev)
if (w_tb[s.type])
return false
return true
}
|
|
|
|
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
|
}
}
// check if a clef, key or time signature may go at start of the current voice
function is_voice_sig() {
var s
if (!curvoice.sym)
return true // new voice (may appear in the middle of a tune)
if (curvoice.time)
return false
for (s = curvoice.last_sym; s; s = s.prev)
if (w_tb[s.type])
return false
return true
}
|