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:
authorJelle Spijker <spijker.jelle@gmail.com>2021-12-09 17:49:05 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2021-12-09 17:49:05 +0300
commit1adae61f39d17f1f9833324c74728314aed9bdb7 (patch)
treec5c1043c9a666d1b51d6d34f294c088ec92b658f /plugins/Marketplace/resources
parent9874b0c8ba9d72136bd5be18361fc7bc61ca1a32 (diff)
Enable and disabled now toggle correctly
Contributes to: 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 ff999c1ee6..5a693ece83 100644
--- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml
+++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
@@ -187,7 +187,7 @@ Item
busy: false
confirmed: false
- button_style: packageData.isInstalled && !packageData.isActive
+ button_style: !packageData.isActive
Layout.alignment: Qt.AlignTop
text: button_style ? catalog.i18nc("@button", "Enable") : catalog.i18nc("@button", "Disable")