Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | core: fix: abnormal clef insertions before %%staves |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: |
a18116ed431531e16e74e02596918c88 |
User & Date: | jef 2024-11-16 18:08:44 |
Context
2024-11-16
| ||
18:08 | core: fix: abnormal clef insertions before %%staves ... (Leaf check-in: a18116ed43 user: jef tags: trunk) | |
2024-11-14
| ||
17:58 | core: fix: loss of music in voice appearing after %%staves ... (check-in: 2d9864e8b6 user: jef tags: trunk) | |
Changes
Changes to core/music.js.
︙ | ︙ | |||
2650 2651 2652 2653 2654 2655 2656 | } } // mrest_expand() // set the clefs (treble or bass) in a 'auto clef' sequence // return the starting clef type function set_auto_clef(st, s_start, clef_type_start) { var s, time, s2, s3, | | | | 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 | } } // mrest_expand() // set the clefs (treble or bass) in a 'auto clef' sequence // return the starting clef type function set_auto_clef(st, s_start, clef_type_start) { var s, time, s2, s3, max = 14, // "A," min = 18 // "E" /* get the max and min pitches in the sequence */ for (s = s_start; s; s = s.ts_next) { if (s.type == C.STAVES && s != s_start) break if (s.st != st) continue |
︙ | ︙ |