From 90616579401703541cd48626cf049b0744a8c4a5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 7 Jun 2024 22:19:37 -0600 Subject: [PATCH] when checking for an existing marker before adding one, use the intended flags --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index a00cd24aff..6d48b66c3c 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -2354,7 +2354,7 @@ Editor::add_location_mark_with_flag (timepos_t const & where, Location::Flags fl return; } - if (_session->locations()->mark_at (where, timecnt_t (1))) { + if (_session->locations()->mark_at (where, timecnt_t (1), flags)) { return; }