Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2021-12-13 17:17:19 +0300
committerJaime van Kessel <nallath@gmail.com>2021-12-13 17:17:19 +0300
commit08eba9f21a97192513783fd93024d2862885d178 (patch)
tree90edd49491c23c39f85a364dc2539bb67d6aa200 /plugins/Marketplace/resources/qml/PackageCardHeader.qml
parentd50dc59aacb66ebeb2f82333e40f589898997414 (diff)
Fix updating package
CURA-8587
Diffstat (limited to 'plugins/Marketplace/resources/qml/PackageCardHeader.qml')
-rw-r--r--plugins/Marketplace/resources/qml/PackageCardHeader.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
index 5a661e32fb..9124998ccc 100644
--- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml
+++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
@@ -233,7 +233,7 @@ Item
text: busy ? catalog.i18nc("@button", "Updating..."): catalog.i18nc("@button", "Update")
- onClicked: packageData.updatePackageTriggered(packageData.packageId);
+ onClicked: packageData.install()
}
}
}