Fix fetch_current_frame_again().
[dcpomatic.git] / src / wx / film_viewer.cc
index e5d07a118e28cfb510a3b4528672712dac4766eb..62bad81959d773dd9bd97e51bee3680954e9c629 100644 (file)
@@ -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 ();
 }