Make all-processors-active act an all processors rather than just pre/post-fader...
authorCarl Hetherington <carl@carlh.net>
Wed, 19 Oct 2011 14:26:40 +0000 (14:26 +0000)
committerCarl Hetherington <carl@carlh.net>
Wed, 19 Oct 2011 14:26:40 +0000 (14:26 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10233 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/processor_box.cc

index 0cd300883496dba3e6773e22df5935950d49b32a..4662d5f599f1e8659ec2f6a9c4ea28d99fc593f1 100644 (file)
@@ -1761,7 +1761,8 @@ ProcessorBox::for_selected_processors (void (ProcessorBox::*method)(boost::share
 void
 ProcessorBox::all_processors_active (bool state)
 {
-       _route->all_processors_active (_placement, state);
+       _route->all_processors_active (PreFader, state);
+       _route->all_processors_active (PostFader, state);
 }
 
 void