From 7a8e0ec4aa6108b22f3e44ace87ca3eb5f4463fa Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 14 Jan 2018 11:19:19 -0800 Subject: [PATCH] =?UTF-8?q?Increase=20the=20sleep=20interval=20for=20waiti?= =?UTF-8?q?ng=20for=20an=20app=20to=20launch.=20I=E2=80=99m=20sure=20there?= =?UTF-8?q?=E2=80=99s=20a=20better=20way=20to=20do=20this,=20but=20I=20don?= =?UTF-8?q?=E2=80=99t=20know=20what=20it=20is=20yet.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Frameworks/RSCore/RSCore/AppKit/UserApp.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/RSCore/RSCore/AppKit/UserApp.swift b/Frameworks/RSCore/RSCore/AppKit/UserApp.swift index 58c21468d..00a71c55e 100644 --- a/Frameworks/RSCore/RSCore/AppKit/UserApp.swift +++ b/Frameworks/RSCore/RSCore/AppKit/UserApp.swift @@ -103,7 +103,7 @@ public final class UserApp { if app.isFinishedLaunching { return true } - Thread.sleep(forTimeInterval: 0.5) // Give the app time to launch. This is ugly. + Thread.sleep(forTimeInterval: 1.0) // Give the app time to launch. This is ugly. return true }