mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 14:45:43 +01:00
* more user friendly MIDI automation lane names
git-svn-id: svn://localhost/ardour2/branches/3.0@4451 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c9e0804e9f
commit
6c538ab719
1 changed files with 2 additions and 2 deletions
|
|
@ -158,8 +158,8 @@ Automatable::describe_parameter (Evoral::Parameter param)
|
|||
/* ID's are zero-based, present them as 1-based */
|
||||
return (string_compose(_("Pan %1"), param.id() + 1));
|
||||
} else if (param.type() == MidiCCAutomation) {
|
||||
return string_compose("CC %1 (%2) [%3]",
|
||||
param.id() + 1, midi_name(param.id()), int(param.channel()) + 1);
|
||||
return string_compose("%2 [%3]",
|
||||
param.id() + 1, midi_name(param.id()), int(param.channel()) + 1);
|
||||
} else if (param.type() == MidiPgmChangeAutomation) {
|
||||
return string_compose("Program [%1]", int(param.channel()) + 1);
|
||||
} else if (param.type() == MidiPitchBenderAutomation) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue