hot fix to opening files

This commit is contained in:
piotr
2021-08-17 22:34:28 +02:00
parent 71892c25ed
commit aefe2af4d5
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) { func open(filePath string) {
cmd := exec.Command(*fileManager, filePath) cmd := exec.Command(*fileManager, filePath)
go cmd.Run() cmd.Start()
glib.TimeoutAdd(uint(150), func() bool { glib.TimeoutAdd(uint(150), func() bool {
gtk.MainQuit() gtk.MainQuit()