Minor tweak to explorer wrapper script launch

This commit is contained in:
Travis Nickles 2020-03-26 17:10:50 -05:00
parent 2db3f045d6
commit 50ac81a8b9

View File

@ -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)) { }