diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-03 17:02:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-03 17:02:42 +0100 |
| commit | ee86fd488bff7b156c72565e1c799ad2a91da599 (patch) | |
| tree | 46a16cb932d39649d856c62b995b8dfdcb0d5cc4 /src | |
| parent | 16a94f40e8e3cf0ae2ca710573a70bf7f104ec81 (diff) | |
Another call to wxTimer::Start() with 0 delay, which fails on OS X.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_viewer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
