summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-02-25 03:20:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-02-25 03:20:47 +0000
commit6dcb20af785df2dfeb0657b711266dbbaaa2dbbf (patch)
treeacf127c930708568d3424fe1327509adf6096f67 /libs/ardour/route.cc
parent36f9a82cefeba9c189b7e65d9dacc8cb5b7a3b5f (diff)
take reverse width into account when labelling signals in panner2d ; better way to draw the width arc
git-svn-id: svn://localhost/ardour2/branches/3.0@8956 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 5550bb3f9b..33e3923454 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -870,6 +870,8 @@ Route::add_processor (boost::shared_ptr<Processor> processor, ProcessorList::ite
{
assert (processor != _meter);
assert (processor != _main_outs);
+
+ DEBUG_TRACE (DEBUG::Processors, string_compose ("%1 adding processor %2\n", name(), processor->name()));
ChanCount old_pms = processor_max_streams;
@@ -916,7 +918,6 @@ Route::add_processor (boost::shared_ptr<Processor> processor, ProcessorList::ite
if (configure_processors_unlocked (err)) {
pstate.restore ();
configure_processors_unlocked (0); // it worked before we tried to add it ...
- cerr << "configure failed\n";
return -1;
}
}