plugin 'colorhalfsteps' does not work on voice 4
Submitted by Jojo-Schmitz on May 25, 2012 - 1:48pm.
| Project: | Color all Half Step Notes (Sharps & Flats) Red |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
The bug is in line 54 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
Thank you for catching that. The plugin has been corrected and re-posted.
Automatically closed -- issue fixed for 2 weeks with no activity.