commenting out another line from #17 that was missed in 7972e18a72

This commit is contained in:
skratchdot 2019-03-31 10:38:44 -04:00
parent da5c36ab63
commit 1a48294fa5
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ func open(input string) *exec.Cmd {
func openWith(input string, appName string) *exec.Cmd {
cmd := exec.Command("cmd", "/C", "start", "", appName, cleaninput(input))
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
//cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
return cmd
}