From ee86fd488bff7b156c72565e1c799ad2a91da599 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 3 May 2017 17:02:42 +0100 Subject: [PATCH] Another call to wxTimer::Start() with 0 delay, which fails on OS X. --- 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 83a179f26..3f6e7dacd 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -456,7 +456,7 @@ FilmViewer::start () } _playing = true; - _timer.Start (0, wxTIMER_ONE_SHOT); + _timer.Start (1.0, wxTIMER_ONE_SHOT); } bool -- 2.30.2