aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/main.go')
-rw-r--r--ethereal/main.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/ethereal/main.go b/ethereal/main.go
index e1cd43ace..0f99be886 100644
--- a/ethereal/main.go
+++ b/ethereal/main.go
@@ -10,15 +10,14 @@ import (
const (
ClientIdentifier = "Ethereal"
- Version = "0.5.17"
+ Version = "0.6.0"
)
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