13
0

Make all-processors-active act an all processors rather than just pre/post-fader ones depending on where the mouse was clicked to open the menu.

git-svn-id: svn://localhost/ardour2/branches/3.0@10233 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-10-19 14:26:40 +00:00
parent 52caae3971
commit 5c97b7a9cf

View 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