mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Ruler Markers: for now, ignore Cue Markers in various Range operations
This commit is contained in:
parent
540a85cbbd
commit
11bb40a06e
1 changed files with 1 additions and 1 deletions
|
|
@ -1381,7 +1381,7 @@ Locations::marks_either_side (timepos_t const & pos, timepos_t& before, timepos_
|
|||
std::list<timepos_t> positions;
|
||||
|
||||
for (LocationList::const_iterator i = locs.begin(); i != locs.end(); ++i) {
|
||||
if (((*i)->is_auto_loop() || (*i)->is_auto_punch()) || (*i)->is_xrun()) {
|
||||
if (((*i)->is_auto_loop() || (*i)->is_auto_punch()) || (*i)->is_xrun() || (*i)->is_cue_marker()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue