summaryrefslogtreecommitdiff
path: root/libs/ardour/mute_master.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-03-24 13:47:37 -0400
committerDavid Robillard <d@drobilla.net>2015-03-24 13:48:43 -0400
commit089c334d0c4f2878f81b6767ee2230256e1fc949 (patch)
tree0159e58bd04e9045279b018c2bda61c3ba81929d /libs/ardour/mute_master.cc
parentd67d4d129f49179e41948d9268c40bc16d0475c9 (diff)
Resolve only active notes when muted/non-soloed.
Fixes bug #6206.
Diffstat (limited to 'libs/ardour/mute_master.cc')
-rw-r--r--libs/ardour/mute_master.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc
index 9f2ed08dab..5734af8a3d 100644
--- a/libs/ardour/mute_master.cc
+++ b/libs/ardour/mute_master.cc
@@ -31,6 +31,9 @@
using namespace ARDOUR;
using namespace std;
+const MuteMaster::MutePoint MuteMaster::AllPoints = MuteMaster::MutePoint(
+ PreFader|PostFader|Listen|Main);
+
MuteMaster::MuteMaster (Session& s, const std::string&)
: SessionHandleRef (s)
, _mute_point (MutePoint (0))