use new parameter to limit minimum length of any range location
This commit is contained in:
parent
94e2b61a86
commit
12803c4255
@ -220,7 +220,12 @@ Location::set_start (framepos_t s, bool force, bool allow_bbt_recompute)
|
|||||||
assert (_end >= 0);
|
assert (_end >= 0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
} else {
|
||||||
|
/* range locations must exceed a minimum duration */
|
||||||
|
if (_end - s < Config->get_range_location_minimum()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (s != _start) {
|
if (s != _start) {
|
||||||
|
|
||||||
@ -283,6 +288,11 @@ Location::set_end (framepos_t e, bool force, bool allow_bbt_recompute)
|
|||||||
assert (_end >= 0);
|
assert (_end >= 0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
} else {
|
||||||
|
/* range locations must exceed a minimum duration */
|
||||||
|
if (e - _start < Config->get_range_location_minimum()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e != _end) {
|
if (e != _end) {
|
||||||
@ -340,6 +350,11 @@ Location::set (framepos_t s, framepos_t e, bool allow_bbt_recompute)
|
|||||||
assert (_end >= 0);
|
assert (_end >= 0);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
/* range locations must exceed a minimum duration */
|
||||||
|
if (e - s < Config->get_range_location_minimum()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (s != _start) {
|
if (s != _start) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user