StudioWelcome: Do not start with .ui.qml file

Opening the design mode while a project is still loaded
can become incredbly slow.

Change-Id: I692c736269fb130dc33461dcb8a5f6e6e6765b88
Reviewed-by: Brook Cronin <brook.cronin@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Thomas Hartmann
2020-12-17 10:40:48 +01:00
committed by Tim Jenssen
parent 8d9c39fa30
commit 1ae893de26

View File

@@ -28,7 +28,7 @@ import QtQuick 2.0
ListModel { ListModel {
ListElement { ListElement {
projectName: "ClusterTutorial" projectName: "ClusterTutorial"
qmlFileName: "Cluster_Art.ui.qml" qmlFileName: "ClusterTutorial.qml"
thumbnail: "images/tutorialclusterdemo_thumbnail.png" thumbnail: "images/tutorialclusterdemo_thumbnail.png"
displayName: "Cluster Tutorial" displayName: "Cluster Tutorial"
} }
@@ -42,21 +42,21 @@ ListModel {
ListElement { ListElement {
projectName: "SideMenu" projectName: "SideMenu"
qmlFileName: "MainFile.ui.qml" qmlFileName: "SideMenu.qml"
thumbnail: "images/sidemenu_demo.png" thumbnail: "images/sidemenu_demo.png"
displayName: "Side Menu" displayName: "Side Menu"
} }
ListElement { ListElement {
projectName: "WebinarDemo" projectName: "WebinarDemo"
qmlFileName: "MainApp.ui.qml" qmlFileName: "DesignStudioWebinar.qml"
thumbnail: "images/webinardemo_thumbnail.png" thumbnail: "images/webinardemo_thumbnail.png"
displayName: "Webinar Demo" displayName: "Webinar Demo"
} }
ListElement { ListElement {
projectName: "EBikeDesign" projectName: "EBikeDesign"
qmlFileName: "Screen01.ui.qml" qmlFileName: "EBikeDesign.qml"
thumbnail: "images/ebike_demo_thumbnail.png" thumbnail: "images/ebike_demo_thumbnail.png"
displayName: "E-Bike Design" displayName: "E-Bike Design"
} }