mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Consistently use Mark (not Range) for Arrangement markers
Otherwise changing the marker type will cause inconsistently rendered marks
This commit is contained in:
parent
a14f216f3e
commit
24ae92ce1e
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ Editor::add_new_location_internal (Location* location)
|
||||||
lam->start->set_cue_index(location->cue_id());
|
lam->start->set_cue_index(location->cue_id());
|
||||||
group = cue_marker_group;
|
group = cue_marker_group;
|
||||||
} else if (location->is_section() && ruler_section_action->get_active()) {
|
} else if (location->is_section() && ruler_section_action->get_active()) {
|
||||||
lam->start = new ArdourMarker (*this, *section_marker_group, color, location->name(), ArdourMarker::RangeStart, location->start());
|
lam->start = new ArdourMarker (*this, *section_marker_group, color, location->name(), ArdourMarker::Mark, location->start());
|
||||||
group = section_marker_group;
|
group = section_marker_group;
|
||||||
} else {
|
} else {
|
||||||
lam->start = new ArdourMarker (*this, *marker_group, color, location->name(), ArdourMarker::Mark, location->start());
|
lam->start = new ArdourMarker (*this, *marker_group, color, location->name(), ArdourMarker::Mark, location->start());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue