From d47b2fb5dd6a1a8559ce1ce7006f0218a62a0500 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 12 Nov 2021 08:52:48 +0100 Subject: [PATCH] Control should be (in)visible, not (just) image. part oc CURA-8561 --- plugins/Marketplace/resources/qml/PackageCard.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml index bbe7cd4de6..3a185a3e02 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -101,6 +101,7 @@ Rectangle Layout.alignment: Qt.AlignTop enabled: packageData.isVerified + visible: packageData.isVerified Cura.ToolTip { @@ -113,7 +114,6 @@ Rectangle anchors.fill: parent color: UM.Theme.getColor("primary") - visible: packageData.isVerified source: UM.Theme.getIcon("CheckCircle") } @@ -142,7 +142,6 @@ Rectangle anchors.fill: parent color: UM.Theme.getColor("primary") - visible: packageData.isVerified source: UM.Theme.getIcon("CheckCircle") // TODO }