Commit 77fd361c authored by obscuren's avatar obscuren

Error window

parent 09c7d158
package main package main
import ( import (
"fmt"
"os" "os"
"runtime" "runtime"
...@@ -31,18 +30,6 @@ func run() error { ...@@ -31,18 +30,6 @@ func run() error {
db := utils.NewDatabase() db := utils.NewDatabase()
err := utils.DBSanityCheck(db) err := utils.DBSanityCheck(db)
if err != nil { if err != nil {
engine := qml.NewEngine()
component, e := engine.LoadString("local", qmlErr)
if e != nil {
fmt.Println("err:", err)
os.Exit(1)
}
win := component.CreateWindow(nil)
win.Root().ObjectByName("label").Set("text", err.Error())
win.Show()
win.Wait()
ErrorWindow(err) ErrorWindow(err)
os.Exit(1) os.Exit(1)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment