Don't HideWindow, it breaks opening folders on windows

This commit is contained in:
Sean Houghton 2019-03-22 13:31:33 -07:00
parent a2dfa6d0da
commit 7972e18a72
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ func cleaninput(input string) string {
func open(input string) *exec.Cmd {
cmd := exec.Command(runDll32, cmd, input)
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
//cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
return cmd
}