From: Carl Hetherington Date: Tue, 9 Jul 2013 22:45:29 +0000 (+0100) Subject: Fix fetch_current_frame_again(). X-Git-Tag: v2.0.48~1337^2~296 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=916ff1a85dbb89ccdba2e27246d8097367cefdf3;p=dcpomatic.git Fix fetch_current_frame_again(). --- diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index e5d07a118..62bad8195 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -142,7 +142,9 @@ FilmViewer::fetch_current_frame_again () return; } - _player->seek (_player->video_position() - _film->video_frames_to_time (1), false); + Time const t = _film->video_frames_to_time (1); + + _player->seek (_player->video_position() - t * 1.5, true); fetch_next_frame (); }