From 50ac81a8b95f6976ad4088cafce7586953b723e8 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Thu, 26 Mar 2020 17:10:50 -0500 Subject: [PATCH] Minor tweak to explorer wrapper script launch --- DS4Windows/DS4Control/Util.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DS4Windows/DS4Control/Util.cs b/DS4Windows/DS4Control/Util.cs index 747e333..e05cd23 100644 --- a/DS4Windows/DS4Control/Util.cs +++ b/DS4Windows/DS4Control/Util.cs @@ -160,6 +160,7 @@ namespace DS4Windows ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = "explorer.exe"; startInfo.Arguments = tmpPath; + startInfo.WindowStyle = ProcessWindowStyle.Hidden; try { using (Process temp = Process.Start(startInfo)) { }