plugin 'countnotes' does not work on voice 4

• May 25, 2012 - 14:51
Type
Functional
Severity
S4 - Minor
Status
closed

The bug is in line 69 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++) {


Comments