From 916ff1a85dbb89ccdba2e27246d8097367cefdf3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 9 Jul 2013 23:45:29 +0100 Subject: Fix fetch_current_frame_again(). --- src/wx/film_viewer.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') 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 (); } -- cgit v1.2.3