Differences From Artifact [1d3bef3aba]:
- File core/tune.js — part of check-in [d872d824a8] at 2024-01-27 12:52:06 on branch trunk — core: fix: bad measure numbers when dotted bar in the first measure (user: jef size: 47153)
To Artifact [d8d3fa9400]:
- File core/tune.js — part of check-in [f9d7468246] at 2024-02-19 09:19:40 on branch trunk — core: fix: don't scale the tune header when %%pagescale after the first K: (user: jef size: 47204)
| ︙ | |||
2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 | 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 | + + |
// change state from 'tune header' to 'in tune body'
// curvoice is defined when called from get_voice()
function goto_tune() {
var v, p_voice
set_page();
write_heading();
blk_flush() // tune heading in a specific SVG
if (glovar.new_nbar) {
gene.nbar = glovar.new_nbar // measure numbering
glovar.new_nbar = 0
} else {
gene.nbar = 1
}
|
| ︙ |