From 94f27fed01e1f4c9cb876fa5594d11e2bbe3f7bd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 18 Jun 2015 12:43:38 +0100 Subject: Stop playback when we reach the end of the playlist. --- src/wx/film_viewer.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 1632a45be..07c64886e 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -221,7 +221,15 @@ FilmViewer::get (DCPTime p, bool accurate) void FilmViewer::timer () { - get (_position + DCPTime::from_frames (1, _film->video_frame_rate ()), true); + DCPTime const frame = DCPTime::from_frames (1, _film->video_frame_rate ()); + + if ((_position + frame) >= _film->length ()) { + _play_button->SetValue (false); + check_play_state (); + } else { + get (_position + frame, true); + } + update_position_label (); update_position_slider (); } -- cgit v1.2.3