From f734f683220ac9d58ee199f56ee0882d33a1499b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 12 Aug 2018 22:59:18 +0100 Subject: [PATCH] Punt jump-to-selected to a UI idle handler. --- src/wx/content_panel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 704f25169..74d0cf545 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -277,8 +277,8 @@ ContentPanel::selection_changed () } } - if (go_to && Config::instance()->jump_to_selected ()) { - _film_viewer->set_position (go_to.get().ceil(_film->video_frame_rate())); + if (go_to && Config::instance()->jump_to_selected() && signal_manager) { + signal_manager->when_idle(boost::bind(&FilmViewer::set_position, _film_viewer, go_to.get().ceil(_film->video_frame_rate()))); } if (_timeline_dialog) { -- 2.30.2