Ignore "stop at end" when exporting

Exporting a dedicated Range should not be constrained by
session markers. This fixes at least 2 issues:

* export could be cut short when using latent plugins
* exporting a range crossing the session end marker was cut short
This commit is contained in:
Robin Gareus 2023-12-07 22:43:11 +01:00
parent 963c104cca
commit a13a797600
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -1131,6 +1131,10 @@ Session::compute_stop_limit () const
return max_samplepos;
}
if (_exporting) {
return max_samplepos;
}
bool const punching_in = (config.get_punch_in () && _locations->auto_punch_location());
bool const punching_out = (config.get_punch_out () && _locations->auto_punch_location());