wip
Some checks failed
CloudSave/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-12 19:06:52 +02:00
parent 57fc77755e
commit b36142c309
5 changed files with 157 additions and 81 deletions

View File

@@ -42,16 +42,5 @@ func main() {
s := data.NewService(repo)
w := mainwindow.Make(a, s)
defer func() {
if r := recover(); r != nil {
d := dialog.NewError(fmt.Errorf("the application crashed: %s", r), w)
d.Show()
d.SetOnClosed(func() {
os.Exit(1)
})
}
}()
w.ShowAndRun()
}