From: Carl Hetherington Date: Tue, 5 Nov 2019 20:20:32 +0000 (+0100) Subject: Don't request idle get if we are starting playback again. X-Git-Tag: v2.15.30~5 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=25db72d238179045bf5dcc3dbe87658dd3609d52 Don't request idle get if we are starting playback again. --- diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 89702ac0c..495b82567 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -583,9 +583,10 @@ FilmViewer::seek (DCPTime t, bool accurate) _closed_captions_dialog->clear (); _butler->seek (t, accurate); - request_idle_get (); - if (was_running) { + if (!was_running) { + request_idle_get (); + } else { start (); } }