mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 23:57:23 +00:00
Initialization of Qt should happen before anything else
This commit is contained in:
parent
214721ca01
commit
52ddf044ae
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue