Skip to content

Commit 7972e18

Browse files
committed
Don't HideWindow, it breaks opening folders on windows
1 parent a2dfa6d commit 7972e18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

open/exec_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func cleaninput(input string) string {
2222

2323
func open(input string) *exec.Cmd {
2424
cmd := exec.Command(runDll32, cmd, input)
25-
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
25+
//cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
2626
return cmd
2727
}
2828

0 commit comments

Comments
 (0)