mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
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:
parent
963c104cca
commit
a13a797600
1 changed files with 4 additions and 0 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue