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.
This commit is contained in:
Franke Burgarino 2025-10-21 14:25:58 -05:00
parent cd2338a6ac
commit 4bdad3a20d

View file

@ -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))) {