Differences From Artifact [dfb372de92]:
- File core/tune.js — part of check-in [33e2d48bd8] at 2022-03-12 08:31:23 on branch trunk — core: handle slurs without start or without end (user: jef size: 45117)
To Artifact [572f0a5553]:
- File core/tune.js — part of check-in [f3b205423f] at 2022-03-15 06:47:37 on branch trunk — core: fix: lack of transposition of chord symbols on rests - reported by Jakob Englhauser (user: jef size: 45134)
| ︙ | |||
848 849 850 851 852 853 854 855 856 857 858 859 860 861 | 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | + |
case C.GRACE:
for (g = s.extra; g; g = g.next) {
for (i = 0; i <= g.nhd; i++)
note_transp(g, sk, g.notes[i])
}
continue
case C.NOTE:
case C.REST:
for (i = 0; i <= s.nhd; i++)
note_transp(s, sk, s.notes[i])
if (s.a_gch)
gch_transp(s, sk)
continue
case C.KEY:
if (sk)
|
| ︙ |