From 3c9de0610bf96ea197dfbe4d1821b8c26b7dea43 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 29 Jun 2020 16:58:45 +0200 Subject: [PATCH] Let welcomeDialog default to invisible This speeds up the bootup a bit since it doesn't have to create a number of the items in the dialog --- resources/qml/Cura.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 8ba651a5b0..c9a16e579a 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -74,7 +74,7 @@ UM.MainWindow WelcomeDialogItem { id: welcomeDialogItem - visible: true // True, so if somehow no preferences are found/loaded, it's shown anyway. + visible: false z: greyOutBackground.z + 1 }