Browse Source

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
Jaime van Kessel 4 years ago
parent
commit
3c9de0610b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Cura.qml

+ 1 - 1
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
     }