summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-03 17:02:42 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-03 17:02:42 +0100
commitee86fd488bff7b156c72565e1c799ad2a91da599 (patch)
tree46a16cb932d39649d856c62b995b8dfdcb0d5cc4 /src
parent16a94f40e8e3cf0ae2ca710573a70bf7f104ec81 (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.cc2
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