From 106bde1d2c9246fc62c8f37f560701abf0e80c51 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 1 Jul 2019 15:17:11 +0100 Subject: [PATCH] swaroop: fix decrementing of allowed shows count to be at the right time. --- src/wx/swaroop_controls.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wx/swaroop_controls.cc b/src/wx/swaroop_controls.cc index 99b1fd064..925fcb5e7 100644 --- a/src/wx/swaroop_controls.cc +++ b/src/wx/swaroop_controls.cc @@ -567,6 +567,7 @@ SwaroopControls::update_current_content () reset_film (); } +/** One piece of content in our SPL has finished playing */ void SwaroopControls::viewer_finished () { @@ -578,16 +579,17 @@ SwaroopControls::viewer_finished () _selected_playlist_position++; if (_selected_playlist_position < int(_playlists[*_selected_playlist].get().size())) { + /* Next piece of content on the SPL */ update_current_content (); if (!stop) { _viewer->start (); } } else { + /* Finished the whole SPL */ _selected_playlist_position = 0; _viewer->set_background_image (true); ResetFilm (shared_ptr(new Film(optional()))); stopped (); + decrement_allowed_shows (); } - - decrement_allowed_shows (); } -- 2.30.2