Hide Aux-send button in editor-mixer

This commit is contained in:
Ben Loftis 2020-03-31 01:09:57 +02:00 committed by Robin Gareus
parent b7e30cfc24
commit eb6d718305
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 5 additions and 1 deletions

View File

@ -663,7 +663,11 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
if (!_route->is_master()) {
rec_mon_table.attach (*show_sends_button, 0, 3, 0, 2);
show_sends_button->show();
if (_mixer_owned) {
show_sends_button->show();
} else {
show_sends_button->hide();
}
}
}