From 34875e4f3f4aa73b3134d2012bd537eb0ef81764 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 28 May 2024 08:41:38 -0500 Subject: [PATCH] label cd track markers distinctly --- gtk2_ardour/editor_ops.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index cd68bb926f..e8cc160e31 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -2368,6 +2368,8 @@ Editor::add_location_mark_with_flag (timepos_t const & where, Location::Flags fl markername = string_compose (_("cue %1"), cue_marker_name (cue_id)); } else if (flags & Location::IsSection) { namebase = _("section"); + } else if (flags & Location::IsCDMarker) { + namebase = _("cd trk"); } else { namebase = _("mark"); }