From 32320ec31dbc75d7566806308ebe2e72807a162a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 11 Jul 2013 22:06:20 -0400 Subject: [PATCH] Add windows equivalent of hack in timefx --- gtk2_ardour/editor_timefx.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_timefx.cc b/gtk2_ardour/editor_timefx.cc index 2f0b09ed17..e43dae9e2b 100644 --- a/gtk2_ardour/editor_timefx.cc +++ b/gtk2_ardour/editor_timefx.cc @@ -402,9 +402,12 @@ Editor::timefx_thread (void *arg) by the GUI ... */ +#ifdef WIN32 + Sleep(2000); +#else struct timespec t = { 2, 0 }; nanosleep (&t, 0); - +#endif return 0; }