From 88c839d0789b80330c934024e4c9ae9faafe916e Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 28 Feb 2016 17:06:28 +0100 Subject: allow to configure custom path to video monitor --- gtk2_ardour/video_timeline.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour/video_timeline.cc') diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc index a1dd4bcfbb..713ca1ca12 100644 --- a/gtk2_ardour/video_timeline.cc +++ b/gtk2_ardour/video_timeline.cc @@ -746,7 +746,12 @@ VideoTimeLine::find_xjadeo () { return; } - version_check.wait (); +#ifdef PLATFORM_WINDOWS + version_check.wait (); // 40ms timeout +#else + version_check.wait (WNOHANG); +#endif + int timeout = 300; while (xjadeo_version.empty() && --timeout) { Glib::usleep(10000); -- cgit v1.2.3