Wrong note identified for string A fret 6

• Aug 14, 2018 - 15:23
Type
Functional
Severity
S4 - Minor
Status
active
Regression
No
Workaround
No

Seagull_Merlin_Dad_CheckNotes_v2.qml code:
if(note.pitch == 67){return("X");} //G not available
if(note.pitch == 68){return("6");} //G#

Correction edit for Seagull_Merlin_Dad_CheckNotes_v2.qml
The G note should have the 6 and the G# should have the X:
if(note.pitch == 67){return("6");} //G
if(note.pitch == 68){return("X");} //G# not available


Comments

Severity S3 - Major S4 - Minor
Status (old) patch (code needs review) needs info
Status needs info
Type Functional Graphical (UI)

I see what you mean. There is no G# in the key of D, so the results are reversed.

Status (old) needs info active
Status needs info active
Type Graphical (UI) Functional

This need to be active since the code has not been fixed.