From aaff022fd207a78c869e5d4805e3479b691a6e85 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 30 Aug 2023 19:40:19 +0200 Subject: [PATCH] Fix typo in dbda07f6b7 --- gtk2_ardour/editor_markers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index a46eebd163..f2608232f0 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -188,7 +188,7 @@ Editor::add_new_location_internal (Location* location) // session range lam->start = new ArdourMarker (*this, *marker_group, color, _("start"), marker_type (location), location->start()); - lam->end = new ArdourMarker (*this, *marker_group, color, _("end"), marker_type (location, true), location->end()); + lam->end = new ArdourMarker (*this, *marker_group, color, _("end"), marker_type (location, false), location->end()); group = marker_group; } else {