From 4bdad3a20ddd3f4aac8c817955f87ccda1124f62 Mon Sep 17 00:00:00 2001 From: Franke Burgarino Date: Tue, 21 Oct 2025 14:25:58 -0500 Subject: [PATCH] Fix 'Arrangement Boundary' toggle for scenes The 'Arrangement Boundary' toggle was not working correctly for markers with scene changes. Location markers would get turned into section markers, but would not get shifted down to the correct row. --- gtk2_ardour/editor_markers.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index bc1e27680b..a8aabee1a6 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -566,10 +566,10 @@ void Editor::ensure_marker_updated (LocationMarkers* lam, Location* location) { if (location->is_cd_marker()) { reparent_location_markers (lam, marker_group); - } else if (location->is_scene()) { - reparent_location_markers (lam, marker_group); } else if (location->is_section()) { reparent_location_markers (lam, section_marker_group); + } else if (location->is_scene()) { + reparent_location_markers (lam, marker_group); } else if (location->is_cue_marker()) { reparent_location_markers (lam, marker_group); } else if (location->is_mark() || location->matches (Location::Flags(0))) {