From: Paul Davis Date: Thu, 10 Oct 2013 20:16:59 +0000 (-0400) Subject: fix up parsing of send gain MIDI bindings so that they actually work X-Git-Tag: 3.5~58 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=b5f36f57885cc52e9c435b84e42f34cc2a0214a7;p=ardour.git fix up parsing of send gain MIDI bindings so that they actually work --- diff --git a/libs/pbd/controllable_descriptor.cc b/libs/pbd/controllable_descriptor.cc index 9c930e4dbd..392b917ec8 100644 --- a/libs/pbd/controllable_descriptor.cc +++ b/libs/pbd/controllable_descriptor.cc @@ -104,11 +104,10 @@ ControllableDescriptor::set (const std::string& str) } } else if (path[1] == "send") { - if (path.size() == 3 && rest.size() == 3) { + if (path.size() == 3 && rest.size() == 2) { if (path[2] == "gain") { _subtype = SendGain; _target.push_back (atoi (rest[1])); - _target.push_back (atoi (rest[2])); } else { return -1; }