summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-11-18 20:01:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-11-18 20:01:37 +0000
commit57e1358fb2d8a8ab51b4996808e0eaa41492fb9e (patch)
treeb186bc07e6581dc6b96d1e805aee670ce99570c6 /libs/ardour/processor.cc
parentdd4565801be7daea2ffc7043de0cb70a247545b2 (diff)
add "custom" meter option which is the only option where the meter processor is visible in the UI; hide main outs always
git-svn-id: svn://localhost/ardour2/branches/3.0@6126 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index b46cc661e4..3bc9db024b 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -70,6 +70,7 @@ Processor::Processor(Session& session, const string& name)
, _next_ab_is_active(false)
, _configured(false)
, _gui(0)
+ , _display_to_user (true)
{
}
@@ -81,6 +82,7 @@ Processor::Processor (Session& session, const XMLNode& node)
, _next_ab_is_active(false)
, _configured(false)
, _gui(0)
+ , _display_to_user (true)
{
set_state (node, Stateful::loading_state_version);
_pending_active = _active;
@@ -271,3 +273,10 @@ Processor::configure_io (ChanCount in, ChanCount out)
return true;
}
+
+void
+Processor::set_display_to_user (bool yn)
+{
+ _display_to_user = yn;
+}
+