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:
authorcasper <c.lamboo@ultimaker.com>2021-12-14 18:37:16 +0300
committercasper <c.lamboo@ultimaker.com>2021-12-14 18:37:16 +0300
commitc338d8f5ce6f50b48fa35dc8028aff44d3317143 (patch)
tree2fe63776e1d3ee245045074272cdbfc73f324468 /plugins/Marketplace/resources
parent08eba9f21a97192513783fd93024d2862885d178 (diff)
Only show enable/disable button if plugin is installed
CURA-8587
Diffstat (limited to 'plugins/Marketplace/resources')
-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 9124998ccc..db1661870b 100644
--- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml
+++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
@@ -181,7 +181,7 @@ Item
ManageButton
{
id: enableManageButton
- visible: showManageButtons && packageData.packageType != "material"
+ visible: showManageButtons && packageData.isInstalled && packageData.packageType != "material"
enabled: !(installManageButton.busy || updateManageButton.busy)
button_style: !packageData.isActive