From b70f0088e41d558877adedd30d04850786416faa Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 27 Sep 2020 23:31:06 +0200 Subject: [PATCH] Fix playhead position after trim-up-to (#1847). --- src/wx/timing_panel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index 97f3beca6..c4234af66 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -563,11 +563,11 @@ TimingPanel::trim_start_to_playhead_clicked () } } + fv->set_coalesce_player_changes (false); + if (new_ph) { fv->seek (new_ph.get(), true); } - - fv->set_coalesce_player_changes (false); } void -- 2.30.2