summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-09 23:45:29 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-09 23:45:29 +0100
commit916ff1a85dbb89ccdba2e27246d8097367cefdf3 (patch)
treeeeea2f788e0141fdd4c1f31ee104b0f60dc9c0e1 /src
parent4c494156cc416ac46dde1bfc7e694802bad30c3e (diff)
Fix fetch_current_frame_again().
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_viewer.cc4
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 ();
}