Skip to content

Commit 8b6ac51

Browse files
committed
Note APP: Fixed visual feedbacks on the special color mode
1 parent 3e144d2 commit 8b6ac51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Applications/Note/NotePad.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ bool NotePad::RenderColorPerKey(Point origin) {
391391
if (note == 255) {
392392
MatrixOS::LED::SetColor(globalPos, Color(0));
393393
}
394-
else if (IsNoteActive(note)) { // If find the note is currently active. Show it as white
394+
else if (IsNoteActive(note) || rt->midiPipeline.IsNoteActive(note)) { // If find the note is currently active. Show it as white
395395
MatrixOS::LED::SetColor(globalPos, Color::White);
396396
}
397397
else {

0 commit comments

Comments
 (0)