From 1a48294fa5dd09d08fc0ce8ff31fae553be6baa3 Mon Sep 17 00:00:00 2001 From: skratchdot Date: Sun, 31 Mar 2019 10:38:44 -0400 Subject: [PATCH] commenting out another line from #17 that was missed in 7972e18a724d0443822ecdb3d68b5fc025c3ca8b --- open/exec_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open/exec_windows.go b/open/exec_windows.go index efff51b..ddf37f4 100644 --- a/open/exec_windows.go +++ b/open/exec_windows.go @@ -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 }