From 1ae893de26b91c42b041d8e15b9a2651d809b69d Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Thu, 17 Dec 2020 10:40:48 +0100 Subject: [PATCH] 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 Reviewed-by: Tim Jenssen --- .../studiowelcome/qml/welcomepage/ExamplesModel.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml b/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml index e4dc358b591..97bbbb597f4 100644 --- a/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml +++ b/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml @@ -28,7 +28,7 @@ import QtQuick 2.0 ListModel { ListElement { projectName: "ClusterTutorial" - qmlFileName: "Cluster_Art.ui.qml" + qmlFileName: "ClusterTutorial.qml" thumbnail: "images/tutorialclusterdemo_thumbnail.png" displayName: "Cluster Tutorial" } @@ -42,21 +42,21 @@ ListModel { ListElement { projectName: "SideMenu" - qmlFileName: "MainFile.ui.qml" + qmlFileName: "SideMenu.qml" thumbnail: "images/sidemenu_demo.png" displayName: "Side Menu" } ListElement { projectName: "WebinarDemo" - qmlFileName: "MainApp.ui.qml" + qmlFileName: "DesignStudioWebinar.qml" thumbnail: "images/webinardemo_thumbnail.png" displayName: "Webinar Demo" } ListElement { projectName: "EBikeDesign" - qmlFileName: "Screen01.ui.qml" + qmlFileName: "EBikeDesign.qml" thumbnail: "images/ebike_demo_thumbnail.png" displayName: "E-Bike Design" }