diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-22 00:38:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-22 00:38:54 +0100 |
| commit | 142616158f82796d6d7512a31694d90ea8ae52b1 (patch) | |
| tree | b91dac85e69323783e00672b30dd46a82ef4aeef /src/wx/film_viewer.cc | |
| parent | 282cd9584fb4d26b2c750ffceec9b42c09131b4c (diff) | |
Log playback start and stop timecodes.
Diffstat (limited to 'src/wx/film_viewer.cc')
| -rw-r--r-- | src/wx/film_viewer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index a27c0053d..4f5a16da8 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -422,7 +422,7 @@ FilmViewer::start () _playing = true; _dropped = 0; timer (); - Started (); + Started (position()); } bool @@ -438,7 +438,7 @@ FilmViewer::stop () } _playing = false; - Stopped (); + Stopped (position()); return true; } |
