MidiBindingsDialog: Plugin name and note value
- Plugin name to show the title set - MIDI note to show the number and the note
This commit is contained in:
@@ -205,7 +205,7 @@ const MidiBindingView =
|
||||
|
||||
for (let i = 0; i < 127; ++i) {
|
||||
result.push(
|
||||
<MenuItem key={"k" + i} value={i}>{Utility.midiNoteName(i)}</MenuItem>
|
||||
<MenuItem key={"k" + i} value={i}>{i} ({Utility.midiNoteName(i)})</MenuItem>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -661,4 +661,4 @@ const MidiBindingView =
|
||||
},
|
||||
styles);
|
||||
|
||||
export default MidiBindingView;
|
||||
export default MidiBindingView;
|
||||
|
||||
Reference in New Issue
Block a user