diff --git a/libs/ardour/location.cc b/libs/ardour/location.cc index 52943dd290..69e262a04e 100644 --- a/libs/ardour/location.cc +++ b/libs/ardour/location.cc @@ -962,7 +962,9 @@ Locations::add (Location *loc, bool make_current) if (loc->name().empty()) { string new_name; - if (loc->is_mark()) { + if (loc->is_cue_marker()) { + next_available_name (new_name, _("cue")); + } else if (loc->is_mark()) { next_available_name (new_name, _("mark")); } else { next_available_name (new_name, _("range"));