mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
use new midi-note-name API
This commit is contained in:
parent
6b5be3d892
commit
7ed6dab340
2 changed files with 2 additions and 2 deletions
|
|
@ -760,7 +760,7 @@ MidiListEditor::redisplay_model ()
|
|||
for (MidiModel::Notes::iterator i = notes.begin(); i != notes.end(); ++i) {
|
||||
row = *(model->append());
|
||||
row[columns.channel] = (*i)->channel() + 1;
|
||||
row[columns.note_name] = Evoral::midi_note_name ((*i)->note());
|
||||
row[columns.note_name] = ParameterDescriptor::midi_note_name ((*i)->note());
|
||||
row[columns.note] = (*i)->note();
|
||||
row[columns.velocity] = (*i)->velocity();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue