summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-07-22 13:51:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-07-22 13:51:16 +0000
commit3b7230552d8aa6c36fd2fbc3ccc1cfb9109fc843 (patch)
tree9d838960d1cad7fca14957b5e5de3215cf938185 /libs/ardour/send.cc
parent272c1a40db7c965664b256f7f5487dd224bfd413 (diff)
make i18n build work ; add mackie dir back to build ; token work on amp for MIDI; don't try to subgroup route groups with MIDI (for now)
git-svn-id: svn://localhost/ardour2/branches/3.0@5412 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index 1728dc52d9..a90f31c2cf 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -190,7 +190,13 @@ Send::configure_io (ChanCount in, ChanCount out)
return false;
}
- return Processor::configure_io (in, out);
+ if (!Processor::configure_io (in, out)) {
+ return false;
+ }
+
+ reset_panner ();
+
+ return true;
}
/** Set up the XML description of a send so that its name is unique.