loops if last note of selection is last note of staff
Type
Functional
Severity
S2 - Critical
Status
closed
It continually locks up on me at times over the same thing
The last one that I have experienced was on Bass Clarinet on bar 10 beat 1.000 to bar 12 beat 1.000. The score is going to be attached below.
Operating System: Windows 7
Version of MuseScore: 1.1
Attachment | Size |
---|---|
scEWL984.mscz | 12.93 KB |
Comments
Test
Sorry for inconvenience.
I'm getting locked out as well.
If it locks at the end of score, here it is how I solved it:
http://musescore.org/en/node/15019#comment-54897
See also http://musescore.org/en/node/16577
Indeed the plungin fails to check for EOS, so goes into a tight loop when the last note in th selection is the last note in the score.
stylex found how to fix it (just minutes before I found it too), the first occurence of following line:
while(!cursor.isChord()) {cursor.next();}
needs to be replaced with:
while(!cursor.isChord() && !cursor.eos()) {cursor.next();}
Hey Jojo, you are co-maintainer of this plugin now, which means you can upload a new release via the plugin project page.
Thanks, will do shortly
fixed this bug as well as another (see http://musescore.org/en/node/15019#comment-59014)
Automatically closed -- issue fixed for 2 weeks with no activity.