diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-25 16:43:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-25 16:43:23 +0800 |
commit | beca2234af8d91b5840dad75ee0bd4f929f49c98 (patch) | |
tree | 974c6364c32a50418b08a8e243c808a9d3f3cde3 | |
parent | 97004f7eb22ab30ba1acc5dd3ee2f17b5466d41a (diff) | |
parent | 44da1801d87abff4803338d9bcfb25be93969dad (diff) | |
download | go-tangerine-beca2234af8d91b5840dad75ee0bd4f929f49c98.tar.gz go-tangerine-beca2234af8d91b5840dad75ee0bd4f929f49c98.tar.zst go-tangerine-beca2234af8d91b5840dad75ee0bd4f929f49c98.zip |
Merge branch 'release/0.6.0' into develop
-rw-r--r-- | ethereal/main.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index ebda552ee..0f99be886 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -14,11 +14,10 @@ const ( ) 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()) + qml.Init(nil) + var interrupted = false utils.RegisterInterrupt(func(os.Signal) { interrupted = true |