summaryrefslogtreecommitdiff
path: root/libs/ardour/monitor_processor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-03-12 00:19:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-03-12 00:19:46 +0000
commite10f59f96c429a88419a7caddfeaff75a8b19df4 (patch)
tree57f8cf6b8af6ee55e99ae939e3e364912b56166d /libs/ardour/monitor_processor.cc
parentc5dab0e2a8df77725f34f53462a4f08d7b581e57 (diff)
map most (all?) monitor processor state into/onto monitor section GUI
git-svn-id: svn://localhost/ardour2/branches/3.0@6749 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/monitor_processor.cc')
-rw-r--r--libs/ardour/monitor_processor.cc14
1 files changed, 13 insertions, 1 deletions
diff --git a/libs/ardour/monitor_processor.cc b/libs/ardour/monitor_processor.cc
index a8ecbbc0e6..f7dbd7bfdb 100644
--- a/libs/ardour/monitor_processor.cc
+++ b/libs/ardour/monitor_processor.cc
@@ -201,7 +201,7 @@ MonitorProcessor::state (bool full)
chn_node->add_property ("id", buf);
chn_node->add_property (X_("cut"), x->cut == 1.0 ? "no" : "yes");
- chn_node->add_property (X_("invert"), x->polarity == 1.0 ? "yes" : "no");
+ chn_node->add_property (X_("invert"), x->polarity == 1.0 ? "no" : "yes");
chn_node->add_property (X_("dim"), x->dim ? "yes" : "no");
chn_node->add_property (X_("solo"), x->soloed ? "yes" : "no");
@@ -409,3 +409,15 @@ MonitorProcessor::mono () const
{
return _mono;
}
+
+bool
+MonitorProcessor::dim_all () const
+{
+ return _dim_all;
+}
+
+bool
+MonitorProcessor::cut_all () const
+{
+ return _cut_all;
+}