diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_viewer.cc | 4 |
1 files changed, 3 insertions, 1 deletions
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 (); } |
