From 4bc93e5d53998c0aecc8efb1baf346a0a298950d Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Wed, 27 May 2015 17:43:15 +0200 Subject: [PATCH] MacOSX: millis arg was ignored --- app/src/processing/app/macosx/ThinkDifferent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/macosx/ThinkDifferent.java b/app/src/processing/app/macosx/ThinkDifferent.java index 132e7efe6..a7fd15570 100644 --- a/app/src/processing/app/macosx/ThinkDifferent.java +++ b/app/src/processing/app/macosx/ThinkDifferent.java @@ -107,7 +107,7 @@ public class ThinkDifferent { private static void sleep(int millis) { try { - Thread.sleep(100); + Thread.sleep(millis); } catch (InterruptedException e) { //ignore }