summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-11 12:29:13 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-11 13:25:59 +0100
commit7151de6910e6072754bd38d50efa5a36622bb5c6 (patch)
tree532c8ad0ca77e74b0854b5db8b53be762fda674f /src/tools/dcpomatic.cc
parentcb82f3c177b53ce99c8443a74da316a94ae829ac (diff)
FilmViewer API tidying.
Diffstat (limited to 'src/tools/dcpomatic.cc')
-rw-r--r--src/tools/dcpomatic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 27113eeab..aa6526311 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -1301,12 +1301,12 @@ private:
void back_frame ()
{
- _film_viewer->move (-_film_viewer->one_video_frame());
+ _film_viewer->seek_by (-_film_viewer->one_video_frame(), true);
}
void forward_frame ()
{
- _film_viewer->move (_film_viewer->one_video_frame());
+ _film_viewer->seek_by (_film_viewer->one_video_frame(), true);
}
FilmEditor* _film_editor;