Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2020-06-29 17:58:45 +0300
committerJaime van Kessel <nallath@gmail.com>2020-06-29 17:58:45 +0300
commit3c9de0610bf96ea197dfbe4d1821b8c26b7dea43 (patch)
treec5f45e8c60efcef4e9df6d4045cd3f2aaac88a9d /resources/qml/Cura.qml
parent22de878e5c8e4e3f81be2f71b974fcf7a63469e2 (diff)
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
Diffstat (limited to 'resources/qml/Cura.qml')
-rw-r--r--resources/qml/Cura.qml2
1 files changed, 1 insertions, 1 deletions
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
}