Skip to content

Commit

Permalink
chords
Browse files Browse the repository at this point in the history
  • Loading branch information
jimomulloy committed Apr 28, 2024
1 parent cf4f9d7 commit 99f1e8c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ private void renderToneMap(ToneTimeFrame ttf) {

if (showChords) {
Color color = Color.BLACK;
NoteTrack track = toneMap.getNoteTracker().getChordTrack(1);
NoteTrack track = toneMap.getNoteTracker().getChordTrack(4);
if (track != null) {
NoteListElement[] nles = track.getNotes(timeStart);
for (NoteListElement nle : nles) {
Expand All @@ -603,7 +603,7 @@ private void renderToneMap(ToneTimeFrame ttf) {
}
}

track = toneMap.getNoteTracker().getChordTrack(2);
track = toneMap.getNoteTracker().getChordTrack(3);
color = Color.BLACK;
if (track != null) {
NoteListElement[] nles = track.getNotes(timeStart);
Expand All @@ -628,7 +628,7 @@ private void renderToneMap(ToneTimeFrame ttf) {
}
}

track = toneMap.getNoteTracker().getChordTrack(3);
track = toneMap.getNoteTracker().getChordTrack(2);
color = Color.BLACK;
if (track != null) {
NoteListElement[] nles = track.getNotes(timeStart);
Expand All @@ -653,7 +653,7 @@ private void renderToneMap(ToneTimeFrame ttf) {
}
}

track = toneMap.getNoteTracker().getChordTrack(4);
track = toneMap.getNoteTracker().getChordTrack(1);
color = Color.BLACK;
if (track != null) {
NoteListElement[] nles = track.getNotes(timeStart);
Expand Down

0 comments on commit 99f1e8c

Please sign in to comment.