Skip to content

Commit

Permalink
issue #14 Launchpad Circuit: manage scales
Browse files Browse the repository at this point in the history
  • Loading branch information
mebitek committed Jan 9, 2024
1 parent 924d761 commit 4247a3a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1060,8 +1060,10 @@ void LaunchpadController::drawNoteSequenceNotes(const NoteSequence &sequence, No
if (col == 7) {
n = n + scale.notesPerOctave();
}
Color color = (selectedNote - (scale.notesPerOctave()*selectedOctave))== n ? colorYellow() : colorGreen(1);
Color color = (selectedNote - (scale.notesPerOctave()*selectedOctave))== n ? colorYellow() : colorGreen(3);
setGridLed(row, col, color);
} else {
setGridLed(row, col, colorGreen(1));
}
}
if (_engine.state().running()) {
Expand Down

0 comments on commit 4247a3a

Please sign in to comment.