Skip to content

Commit d6f8321

Browse files
committed
missing file
1 parent d1fc986 commit d6f8321

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/logic/sync-stereo.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66
"os/exec"
77
"path/filepath"
8-
"syscall"
98

109
"fyne.io/fyne/v2/widget"
1110
)
@@ -48,7 +47,7 @@ func combineStereoFiles(folder1 string, folder2 string, outputFolder string, pro
4847
"pipe:1",
4948
"-map", "[a]",
5049
outputFolder + "/" + filepath.Base(file))
51-
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
50+
cmd.SysProcAttr = getSysProcAttr()
5251
stdout, err := cmd.StdoutPipe()
5352
if err != nil {
5453
return err

0 commit comments

Comments
 (0)