summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-09 16:36:58 +0200
committerRobin Gareus <robin@gareus.org>2013-07-10 15:27:16 +0200
commitc3a6b940907aeba5b5b262567097c0a87505f8c8 (patch)
tree6e5b4351a5687aabff9ee664a3ffff9c7a09961b /gtk2_ardour/route_ui.cc
parent93713d3acad5d1b5331526022f174c3609d713bd (diff)
hide solo button on master-bus
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-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 1387edaaba..a245d3bf99 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -254,7 +254,7 @@ RouteUI::set_route (boost::shared_ptr<Route> rp)
mute_button->show();
- if (_route->is_monitor()) {
+ if (_route->is_monitor() || _route->is_master()) {
solo_button->hide ();
} else {
solo_button->show();