summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-10-19 14:26:40 +0000
committerCarl Hetherington <carl@carlh.net>2011-10-19 14:26:40 +0000
commit5c97b7a9cfe51398c91c51cf2ff602600fa4bb40 (patch)
tree9e8984dae738d447d978ed1e2be16636649eb07e /gtk2_ardour
parent52caae3971a16a8d937204eb48c73fe83eacf8f6 (diff)
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
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/processor_box.cc3
1 files changed, 2 insertions, 1 deletions
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