mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
when positioning master send in processor list, use cheaper conditional than is_track()
This commit is contained in:
parent
3f52087e5f
commit
4801cfc36a
1 changed files with 1 additions and 2 deletions
|
|
@ -5298,8 +5298,7 @@ Route::setup_invisible_processors ()
|
||||||
new_processors.push_back (_surround_send);
|
new_processors.push_back (_surround_send);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Profile->get_livetrax() && is_track()) {
|
if (Profile->get_livetrax() && _master_send) {
|
||||||
assert (_master_send);
|
|
||||||
assert (!_master_send->display_to_user());
|
assert (!_master_send->display_to_user());
|
||||||
new_processors.push_back (_master_send);
|
new_processors.push_back (_master_send);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue