when positioning master send in processor list, use cheaper conditional than is_track()

This commit is contained in:
Paul Davis 2024-04-02 18:11:17 -06:00
parent 3f52087e5f
commit 4801cfc36a
1 changed files with 1 additions and 2 deletions

View File

@ -5298,8 +5298,7 @@ Route::setup_invisible_processors ()
new_processors.push_back (_surround_send);
}
if (Profile->get_livetrax() && is_track()) {
assert (_master_send);
if (Profile->get_livetrax() && _master_send) {
assert (!_master_send->display_to_user());
new_processors.push_back (_master_send);
}