Initialization of Qt should happen before anything else

This commit is contained in:
obscuren 2014-06-26 23:14:17 +02:00
parent 214721ca01
commit 52ddf044ae
1 changed files with 3 additions and 2 deletions

View File

@ -10,10 +10,11 @@ import (
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
// Leave QT on top at ALL times.
qml.Init(nil)
runtime.GOMAXPROCS(runtime.NumCPU())
var interrupted = false
utils.RegisterInterrupt(func(os.Signal) {
interrupted = true