diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-11 12:29:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-11 13:25:59 +0100 |
| commit | 7151de6910e6072754bd38d50efa5a36622bb5c6 (patch) | |
| tree | 532c8ad0ca77e74b0854b5db8b53be762fda674f /src/wx/content_panel.cc | |
| parent | cb82f3c177b53ce99c8443a74da316a94ae829ac (diff) | |
FilmViewer API tidying.
Diffstat (limited to 'src/wx/content_panel.cc')
| -rw-r--r-- | src/wx/content_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 04e35c758..8e6c49294 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -304,7 +304,7 @@ ContentPanel::check_selection () if (go_to && Config::instance()->jump_to_selected() && signal_manager) { shared_ptr<FilmViewer> fv = _film_viewer.lock (); DCPOMATIC_ASSERT (fv); - signal_manager->when_idle(boost::bind(&FilmViewer::set_position, fv.get(), go_to.get().ceil(_film->video_frame_rate()))); + signal_manager->when_idle(boost::bind(&FilmViewer::seek, fv.get(), go_to.get().ceil(_film->video_frame_rate()), true)); } if (_timeline_dialog) { |
