amend 2f16: cue markers should be reparented to their own ruler lane

This commit is contained in:
Ben Loftis 2023-08-29 23:00:53 -05:00
parent c5d4a0c172
commit 2e9432e281
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}