Commit 44da1801 authored by obscuren's avatar obscuren

Fixed strange issue where qml will crash first run after go install

parent 82a84dca
...@@ -14,11 +14,10 @@ const ( ...@@ -14,11 +14,10 @@ const (
) )
func main() { func main() {
// Leave QT on top at ALL times. Qt Needs to be initialized from the main thread
qml.Init(nil)
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())
qml.Init(nil)
var interrupted = false var interrupted = false
utils.RegisterInterrupt(func(os.Signal) { utils.RegisterInterrupt(func(os.Signal) {
interrupted = true interrupted = true
......
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