Fix send-button layout (2 column table)

Amend c765079b2f, remove Mixbus special-case for Ardour
This commit is contained in:
Robin Gareus 2020-03-31 01:36:14 +02:00
parent 8fced29372
commit bd92e290c0
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -663,7 +663,12 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
/* non-master bus */
if (!_route->is_master()) {
rec_mon_table.attach (*show_sends_button, 0, 3, 0, 2);
if (ARDOUR::Profile->get_mixbus()) {
rec_mon_table.attach (*show_sends_button, 0, 3, 0, 2);
} else {
rec_mon_table.attach (*show_sends_button, 0, 2, 0, 2);
}
if (_mixer_owned) {
show_sends_button->show();
} else {