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:
Jiri Popek
2025-08-02 22:21:04 +02:00
committed by Jiri Popek
parent ae02131fe9
commit 5fafcabf82
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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;