aboutsummaryrefslogtreecommitdiffstats
path: root/ClusterAndHUD.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ClusterAndHUD.qml')
-rw-r--r--ClusterAndHUD.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/ClusterAndHUD.qml b/ClusterAndHUD.qml
index dca238d..b2d6b2e 100644
--- a/ClusterAndHUD.qml
+++ b/ClusterAndHUD.qml
@@ -31,6 +31,7 @@
import QtQuick 2.1
import QtQuick.Window 2.1
import io.qt.ApplicationManager 1.0
+import com.pelagicore.ScreenManager 1.0
import utils 1.0
import "sysui/Cluster"
@@ -42,7 +43,7 @@ Main {
title: "CSD"
height: 720
width: 1920
- visible: true
+ visible: false
color: "black"
@@ -57,5 +58,7 @@ Main {
Component.onCompleted: {
WindowManager.registerOutputWindow(cluster)
Style.withCluster = true
+ ScreenManager.setScreen(cluster, 1)
+ cluster.show()
}
}