Fix signal emission for Locations::ripple (2/2)

This commit is contained in:
Robin Gareus 2023-12-10 04:08:55 +01:00
parent 0f3e3b5243
commit bdfee53d1f
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 2 deletions

View File

@ -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<Playlist> 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<Locations> (*_session->locations(), &before, &_session->locations()->get_state()));
}