From 3107b37b0fe3d8d27bcba3257a1ebac327344a53 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 3 Apr 2025 22:04:18 +0200 Subject: Fix error when pressing the HTTP server play button twice in a row. --- src/wx/film_viewer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 26c3467aa..957407338 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -382,7 +382,7 @@ FilmViewer::resume () void FilmViewer::start () { - if (!_film) { + if (!_film || _playing) { return; } -- cgit v1.2.3