Don't raise an error when trying to auto-connect master to physical outputs if the...
[ardour.git] / libs / ardour / send.cc
index 1728dc52d945bb592fc3ca4cee32f332f5f872e1..a90f31c2cf6671607de6d289c0b664a3df5089bf 100644 (file)
@@ -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.