multiple jumps with playRepeats

• Mar 14, 2018 - 12:45
Reported version
2.2
Type
Functional
Severity
S4 - Minor
Status
closed
Project

Inspired by https://musescore.org/en/node/270303

If two jumps refer to the same jumpTo and playUntil marker and have playRepeats enabled, the second jump will replay too much of the score, because it'll copy over from original jumpTo until the playUntil occurrence copied over by the first jump:

@ 1 | 2 | $ 3 | 4 ToC | 5 | 6 JumpC1 | C1 7 | 8 | 9 JumpC2 | C2 10 | 11 |
should unwind as:
1,2,3,4,5,6, 3,4, 7,8,9, 3,4, 10,11
but currently unwinds as:
1,2,3,4,5,6, 3,4, 7,8,9, 3,4,5,6,3,4, 10,11


Comments