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>2022-03-09 14:10:49 +0300
committercasper <c.lamboo@ultimaker.com>2022-03-09 14:10:49 +0300
commit70f66648f4cbf6295e76f7268fe390d1da30647a (patch)
tree70d718a38f2ca17afe9be65bc9db9f87f23b8599 /plugins/Marketplace/resources
parent0e2848796c4f85a826bbcdd8e96c0c4504f74454 (diff)
Recolor placeholder icon for packages/plugins correctly in dark-mode
As we don't want to recolor the icon if the package has a custom icon a `Image` or `UM.RecolorImage` is shown conditionally. CURA-8975
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/PackageCardHeader.qml41
1 files changed, 29 insertions, 12 deletions
diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
index 013704793f..1c39d4b063 100644
--- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml
+++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
@@ -24,7 +24,7 @@ Item
height: UM.Theme.getSize("card").height
// card icon
- Image
+ Item
{
id: packageItem
anchors
@@ -35,19 +35,36 @@ Item
}
width: UM.Theme.getSize("card_icon").width
height: width
- sourceSize.height: height
- sourceSize.width: width
- source:
+
+ property bool packageHasIcon: packageData.iconUrl != ""
+
+ Image
{
- if (packageData.iconUrl != "")
- {
- return packageData.iconUrl
- }
- switch (packageData.packageType)
+ visible: parent.packageHasIcon
+ anchors.fill: parent
+ source: packageData.iconUrl
+ sourceSize.height: height
+ sourceSize.width: width
+ }
+
+ UM.RecolorImage
+ {
+ visible: !parent.packageHasIcon
+ anchors.fill: parent
+ sourceSize.height: height
+ sourceSize.width: width
+ color: UM.Theme.getColor("text")
+ source:
{
- case "plugin": return "../images/Plugin.svg";
- case "material": return "../images/Spool.svg";
- default: return "../images/placeholder.svg";
+ switch (packageData.packageType)
+ {
+ case "plugin":
+ return "../images/Plugin.svg";
+ case "material":
+ return "../images/Spool.svg";
+ default:
+ return "../images/placeholder.svg";
+ }
}
}
}