summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-08 13:17:11 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-08 13:17:11 +0000
commit420d5d659219088b4eb9d41035997a020adf2afa (patch)
tree2e42909ccf8e346e1763fc103fc36a432bf6c2fb
parentdf04f8c1e57f279ed75db707597d61ba06a3d096 (diff)
Fix master bus mute button (#4455).
git-svn-id: svn://localhost/ardour2/branches/3.0@10493 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/route_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 552439b993..f8c8ce9cfd 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1060,7 +1060,7 @@ RouteUI::mute_changed(void* /*src*/)
ActiveState
RouteUI::mute_active_state (Session* s, boost::shared_ptr<Route> r)
{
- if (r->is_master() || r->is_monitor()) {
+ if (r->is_monitor()) {
return ActiveState(0);
}