Punt jump-to-selected to a UI idle handler.
authorCarl Hetherington <cth@carlh.net>
Sun, 12 Aug 2018 21:59:18 +0000 (22:59 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 12 Aug 2018 21:59:18 +0000 (22:59 +0100)
src/wx/content_panel.cc

index 704f251691d62dcc0179f086fd93dd4a615e8cb1..74d0cf54546914fa3456cb2e8f319d11d86c62b8 100644 (file)
@@ -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) {