Differences From Artifact [207c7a69fa]:
- File core/tune.js — part of check-in [3789fffd91] at 2023-01-24 17:40:07 on branch trunk — core: fix: no transposition of tunes with K:none since commit [3990a3b7ed] - reported by Hudson Lacerda (user: jef size: 43330)
To Artifact [c4876b91f7]:
- File core/tune.js — part of check-in [2c6afb4419] at 2023-02-01 16:33:23 on branch trunk — core: fix: display garbage when Q: on voice != top voice - reported by Stuart Soloway and Simon Wascher (user: jef size: 43396)
| ︙ | ︙ | |||
820 821 822 823 824 825 826 827 828 829 830 831 832 833 |
if (e.part) {
// if (s.time != tim) {
// // fixme: insert a part (?)
// }
s.part = e.part
}
if (e.tempo) {
lkvsym(e.tempo, s)
lktsym(e.tempo, s)
}
}
}
} // set_ctrl()
| > > > | 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
if (e.part) {
// if (s.time != tim) {
// // fixme: insert a part (?)
// }
s.part = e.part
}
if (e.tempo) {
e.tempo.v = s.v
e.tempo.p_v = s.p_v
e.tempo.st = s.st
lkvsym(e.tempo, s)
lktsym(e.tempo, s)
}
}
}
} // set_ctrl()
|
| ︙ | ︙ |