Merge pull request #13 from nwg-piotr/files

hot fix to opening files with file manager
This commit is contained in:
Piotr Miller
2021-08-17 22:35:43 +02:00
committed by GitHub
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -624,7 +624,7 @@ func launch(command string, terminal bool) {
func open(filePath string) {
cmd := exec.Command(*fileManager, filePath)
go cmd.Run()
cmd.Start()
glib.TimeoutAdd(uint(150), func() bool {
gtk.MainQuit()