fix displayed name for velocity automation

This commit is contained in:
Paul Davis 2023-06-25 12:44:14 -06:00
parent 296d0756a1
commit b5c9c6a5c4
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ Automatable::describe_parameter (Evoral::Parameter param)
} else if (param.type() == PhaseAutomation) {
return _("Polarity Invert");
} else if (param.type() == MidiVelocityAutomation) {
return string_compose("Velocity [%1]", int(param.channel()) + 1);
return _("Velocity");
} else if (param.type() == MidiCCAutomation) {
return string_compose("Controller %1 [%2]", param.id(), int(param.channel()) + 1);
} else if (param.type() == MidiPgmChangeAutomation) {