From bdfee53d1f54fcc4f66bada0fec08b3734fe36fc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 10 Dec 2023 04:08:55 +0100 Subject: [PATCH] Fix signal emission for Locations::ripple (2/2) --- gtk2_ardour/editor_ops.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index b4785de172..f316aacc8b 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -9621,7 +9621,7 @@ void gap_marker_callback_relax (timepos_t, timecnt_t) void Editor::remove_gap_marker_callback (timepos_t at, timecnt_t distance) { - _session->locations()->ripple (at, -distance, false, false); + _session->locations()->ripple (at, -distance, false); } void @@ -9841,6 +9841,6 @@ Editor::ripple_marks (std::shared_ptr target_playlist, timepos_t at, t XMLNode& before (_session->locations()->get_state()); /* do not move locked markers, do notify */ - _session->locations()->ripple (at, distance, false, true); + _session->locations()->ripple (at, distance, false); _session->add_command (new MementoCommand (*_session->locations(), &before, &_session->locations()->get_state())); }