From 0a83994b5308cadc36e08d944bc65c2aef84449e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 31 Jan 2018 23:10:10 +0000 Subject: [PATCH 1/1] Round seek on jump-to-selected to work around problems with sub-frame seeks and the DCP decoder (#1177). --- src/wx/content_panel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index fa3754dd6..6bcffd377 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -273,7 +273,7 @@ ContentPanel::selection_changed () } if (go_to && Config::instance()->jump_to_selected ()) { - _film_viewer->set_position (go_to.get ()); + _film_viewer->set_position (go_to.get().ceil(_film->video_frame_rate())); } if (_timeline_dialog) { -- 2.30.2