From cfd29b268d8a7f1d06b0e92ef6138f9be7dc05ee Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 29 Nov 2021 18:05:53 +0100 Subject: [PATCH] Use actual download count for packages Quite easy. It turned out the model already had this information, due to foresight when the card itself got implemented. Contributes to issue CURA-8565. --- plugins/Marketplace/resources/qml/PackageCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml index ef22ff04b8..59bd90de9b 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -291,7 +291,7 @@ Rectangle color: UM.Theme.getColor("text") font: UM.Theme.getFont("default") - text: "123456789" + text: packageData.downloadCount } }