aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome/qml
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2022-01-05 16:57:41 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2022-01-07 10:39:58 +0000
commitd985c538ba88988b5af3ae0919f8c0aa8da22e92 (patch)
treeca5a3b7a89eac2d32191f674371126e4fd0653df /src/plugins/studiowelcome/qml
parent3cf01fbf0762ab655e735dd7d37605d415fb74ae (diff)
StudioWelcome: Use preview thumbnail
Change-Id: Ifd7ebc6f83ceecf7241379e4ce44d022b4a7310e Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'src/plugins/studiowelcome/qml')
-rw-r--r--src/plugins/studiowelcome/qml/welcomepage/ProjectsGrid.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/studiowelcome/qml/welcomepage/ProjectsGrid.qml b/src/plugins/studiowelcome/qml/welcomepage/ProjectsGrid.qml
index 099c123ecf..e89dcf4557 100644
--- a/src/plugins/studiowelcome/qml/welcomepage/ProjectsGrid.qml
+++ b/src/plugins/studiowelcome/qml/welcomepage/ProjectsGrid.qml
@@ -37,7 +37,7 @@ GridView {
delegate: HoverOverDesaturate {
id: hoverOverDesaturate
- imageSource: typeof(thumbnail) === "undefined" ? "images/thumbnail_test.png" : thumbnail;
+ imageSource: typeof(thumbnail) === "undefined" ? previewUrl : thumbnail
labelText: displayName
downloadIcon: typeof(showDownload) === "undefined" ? false : showDownload;
onClicked: root.itemSelected(index, root.model.get(index))