From de8934f7abde4832caf6ba0204673e43f2999544 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sat, 11 Nov 2017 22:53:41 -0600 Subject: [PATCH] Increase initial delay before running hotplug routine --- DS4Windows/DS4Forms/DS4Form.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 11ee0fa..00470d5 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -1031,7 +1031,7 @@ namespace DS4Windows if (!inHotPlug) { inHotPlug = true; - TaskRunner.Run(() => { Thread.Sleep(100); InnerHotplug2(uiContext); }); + TaskRunner.Run(() => { Thread.Sleep(500); InnerHotplug2(uiContext); }); } } }