From 5c97b7a9cfe51398c91c51cf2ff602600fa4bb40 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 19 Oct 2011 14:26:40 +0000 Subject: [PATCH] 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 --- gtk2_ardour/processor_box.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 0cd3008834..4662d5f599 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -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