summaryrefslogtreecommitdiff
path: root/libs/ardour/mute_master.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-11-18 13:25:13 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-11-18 13:25:13 +0000
commitef92349187b61349d2d5182f49f700183901f59e (patch)
tree3b4c397c01c1b647bbbcf86db5cdcd0a5823afe4 /libs/ardour/mute_master.cc
parent9931171b6957be8989aa34e94dc15d7a4e598fd3 (diff)
bring back full mute control (pre/post/control/main) via mute button context click
git-svn-id: svn://localhost/ardour2/branches/3.0@6116 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/mute_master.cc')
-rw-r--r--libs/ardour/mute_master.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc
index 224eccdd51..1d0b2dda06 100644
--- a/libs/ardour/mute_master.cc
+++ b/libs/ardour/mute_master.cc
@@ -27,6 +27,11 @@
using namespace ARDOUR;
+const MuteMaster::MutePoint MuteMaster::AllPoints = MutePoint (MuteMaster::PreFader|
+ MuteMaster::PostFader|
+ MuteMaster::Listen|
+ MuteMaster::Main);
+
MuteMaster::MuteMaster (Session& s, const std::string& name)
: AutomationControl (s, Evoral::Parameter (MuteAutomation), boost::shared_ptr<AutomationList>(), name)
, _mute_point (MutePoint (0))