From 2e9432e28112a6bf5a70905fac34f9c367a50bb6 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 29 Aug 2023 23:00:53 -0500 Subject: [PATCH] amend 2f16: cue markers should be reparented to their own ruler lane --- gtk2_ardour/editor_markers.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index a3d47e3c8a..2ed5a1837d 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -476,6 +476,8 @@ void Editor::ensure_marker_updated (LocationMarkers* lam, Location* location) reparent_location_markers (lam, cd_marker_group); } else if (location->is_section()) { reparent_location_markers (lam, section_marker_group); + } else if (location->is_cue_marker()) { + reparent_location_markers (lam, cue_marker_group); } else if (location->is_mark() || location->matches (Location::Flags(0))) { reparent_location_markers (lam, marker_group); }