plugin 'ColorVoices' does not work on voice 4
Submitted by Jojo-Schmitz on May 25, 2012 - 1:07pm.
| Project: | Color the notes of each voice |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Jojo-Schmitz |
| Status: | closed |
Jump to:
Description
The bug is in line 47 of that plugin:
for (var v = 0; v < 3; v++) {
Correct would be:
for (var v = 0; v < 4; v++) {
or
for (var v = 0; v <= 3; v++) {
- Login to post comments
Hopefully by saving this comment the patch will be committed?
no, it won't. You'd need to fix it and upload a new copy of the colorvoices.txt file into http://musescore.org/en/project/colorvoices
Automatically closed -- issue fixed for 2 weeks with no activity.