Skip to content

Commit

Permalink
Don't wait for browser to return
Browse files Browse the repository at this point in the history
Fixes #1332
  • Loading branch information
andydotxyz committed Sep 23, 2020
1 parent 502f7a4 commit f326d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app_xdg.go
Expand Up @@ -23,7 +23,7 @@ func defaultTheme() fyne.Theme {
func (app *fyneApp) OpenURL(url *url.URL) error {
cmd := app.exec("xdg-open", url.String())
cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
return cmd.Run()
return cmd.Start()
}

func (app *fyneApp) SendNotification(n *fyne.Notification) {
Expand Down

0 comments on commit f326d46

Please sign in to comment.