From 11bb40a06edfec0d7a55ff2da766e352b6543c28 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 21 Jan 2022 10:02:18 -0600 Subject: [PATCH] Ruler Markers: for now, ignore Cue Markers in various Range operations --- libs/ardour/location.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc index 98a6c44896..40a01f57bb 100644 --- a/libs/ardour/location.cc +++ b/libs/ardour/location.cc @@ -1381,7 +1381,7 @@ Locations::marks_either_side (timepos_t const & pos, timepos_t& before, timepos_ std::list 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; }