Browse Source

Change "LRN" to "--" on Core MIDI modules.

tags/v1.0.0
Andrew Belt 6 years ago
parent
commit
f63b4a6b34
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Core/plugin.hpp

+ 2
- 2
src/Core/plugin.hpp View File

@@ -82,7 +82,7 @@ struct CcChoice : LedDisplayChoice {
if (0 <= focusCc)
text = string::f("%d", focusCc);
else
text = "LRN";
text = "--";
color.a = 0.5;
}
else {
@@ -162,7 +162,7 @@ struct NoteChoice : LedDisplayChoice {
return;
}
if (module->learningId == id) {
text = "LRN";
text = "--";
color.a = 0.5;
}
else {


Loading…
Cancel
Save