mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
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:
parent
cd2338a6ac
commit
4bdad3a20d
1 changed files with 2 additions and 2 deletions
|
|
@ -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))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue