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:
authorc.lamboo <casperlamboo@gmail.com>2022-04-08 16:55:34 +0300
committerc.lamboo <casperlamboo@gmail.com>2022-04-08 16:55:34 +0300
commit45bc498c7f2935601ee7baee4282b27dcad6533a (patch)
tree96c6903fe5bf0ff91f1657d64a06e1b614ce583a /plugins/Marketplace/resources
parent3de824e1a47ddb4ae0fe1b837acdac075af4bccc (diff)
Replace `RecolorImage` with `ColorImage`
CURA-8640
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/LicenseDialog.qml2
-rw-r--r--plugins/Marketplace/resources/qml/ManageButton.qml2
-rw-r--r--plugins/Marketplace/resources/qml/ManagePackagesButton.qml2
-rw-r--r--plugins/Marketplace/resources/qml/Marketplace.qml2
-rw-r--r--plugins/Marketplace/resources/qml/OnboardBanner.qml2
-rw-r--r--plugins/Marketplace/resources/qml/PackageCardHeader.qml6
-rw-r--r--plugins/Marketplace/resources/qml/PackagePage.qml2
-rw-r--r--plugins/Marketplace/resources/qml/Packages.qml2
-rw-r--r--plugins/Marketplace/resources/qml/VerifiedIcon.qml2
9 files changed, 10 insertions, 12 deletions
diff --git a/plugins/Marketplace/resources/qml/LicenseDialog.qml b/plugins/Marketplace/resources/qml/LicenseDialog.qml
index f3734ca89f..2f3f4ffc12 100644
--- a/plugins/Marketplace/resources/qml/LicenseDialog.qml
+++ b/plugins/Marketplace/resources/qml/LicenseDialog.qml
@@ -33,7 +33,7 @@ UM.Dialog
spacing: UM.Theme.getSize("default_margin").width
leftPadding: UM.Theme.getSize("narrow_margin").width
- UM.RecolorImage
+ UM.ColorImage
{
id: icon
width: UM.Theme.getSize("marketplace_large_icon").width
diff --git a/plugins/Marketplace/resources/qml/ManageButton.qml b/plugins/Marketplace/resources/qml/ManageButton.qml
index 36022ffd54..5f4b3dcadd 100644
--- a/plugins/Marketplace/resources/qml/ManageButton.qml
+++ b/plugins/Marketplace/resources/qml/ManageButton.qml
@@ -46,7 +46,7 @@ Item
height: UM.Theme.getSize("action_button").height
width: childrenRect.width
- UM.RecolorImage
+ UM.ColorImage
{
id: busyIndicator
visible: parent.visible
diff --git a/plugins/Marketplace/resources/qml/ManagePackagesButton.qml b/plugins/Marketplace/resources/qml/ManagePackagesButton.qml
index fc9e7d757f..a32de2b809 100644
--- a/plugins/Marketplace/resources/qml/ManagePackagesButton.qml
+++ b/plugins/Marketplace/resources/qml/ManagePackagesButton.qml
@@ -33,7 +33,7 @@ TabButton
visible: root.hovered
}
- UM.RecolorImage
+ UM.ColorImage
{
id: icon
diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml
index 8fcba852bd..887886fd22 100644
--- a/plugins/Marketplace/resources/qml/Marketplace.qml
+++ b/plugins/Marketplace/resources/qml/Marketplace.qml
@@ -251,7 +251,7 @@ Window
margins: UM.Theme.getSize("default_margin").width
}
spacing: UM.Theme.getSize("default_margin").width
- UM.RecolorImage
+ UM.ColorImage
{
id: bannerIcon
source: UM.Theme.getIcon("Plugin")
diff --git a/plugins/Marketplace/resources/qml/OnboardBanner.qml b/plugins/Marketplace/resources/qml/OnboardBanner.qml
index a9d0834b6d..278c50ab57 100644
--- a/plugins/Marketplace/resources/qml/OnboardBanner.qml
+++ b/plugins/Marketplace/resources/qml/OnboardBanner.qml
@@ -20,7 +20,7 @@ Rectangle
color: UM.Theme.getColor("action_panel_secondary")
// Icon
- UM.RecolorImage
+ UM.ColorImage
{
id: onboardingIcon
anchors
diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
index f86a336d2d..8e25e5c64c 100644
--- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml
+++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml
@@ -47,12 +47,10 @@ Item
sourceSize.width: width
}
- UM.RecolorImage
+ UM.ColorImage
{
visible: !parent.packageHasIcon
anchors.fill: parent
- sourceSize.height: height
- sourceSize.width: width
color: UM.Theme.getColor("text")
source:
{
@@ -123,7 +121,7 @@ Item
Layout.preferredWidth: UM.Theme.getSize("card_tiny_icon").width + 2 * padding
Layout.preferredHeight: UM.Theme.getSize("card_tiny_icon").width + 2 * padding
- contentItem: UM.RecolorImage
+ contentItem: UM.ColorImage
{
source: UM.Theme.getIcon("LinkExternal")
color: UM.Theme.getColor("icon")
diff --git a/plugins/Marketplace/resources/qml/PackagePage.qml b/plugins/Marketplace/resources/qml/PackagePage.qml
index e590ee6091..455b2b8d5d 100644
--- a/plugins/Marketplace/resources/qml/PackagePage.qml
+++ b/plugins/Marketplace/resources/qml/PackagePage.qml
@@ -46,7 +46,7 @@ Rectangle
// But we re-use the package page for the manage plugins as well. The one user that doesn't see
// the num downloads is an acceptable "sacrifice" to make this easy to fix.
visible: packageData.downloadCount != "0"
- UM.RecolorImage
+ UM.ColorImage
{
id: downloadsIcon
width: UM.Theme.getSize("card_tiny_icon").width
diff --git a/plugins/Marketplace/resources/qml/Packages.qml b/plugins/Marketplace/resources/qml/Packages.qml
index 56fffe036e..d86536639c 100644
--- a/plugins/Marketplace/resources/qml/Packages.qml
+++ b/plugins/Marketplace/resources/qml/Packages.qml
@@ -213,7 +213,7 @@ ListView
status: UM.StatusIcon.Status.ERROR
visible: false
}
- UM.RecolorImage
+ UM.ColorImage
{
id: loadMoreIcon
anchors.fill: parent
diff --git a/plugins/Marketplace/resources/qml/VerifiedIcon.qml b/plugins/Marketplace/resources/qml/VerifiedIcon.qml
index 6b9d7b6017..e701c5a91b 100644
--- a/plugins/Marketplace/resources/qml/VerifiedIcon.qml
+++ b/plugins/Marketplace/resources/qml/VerifiedIcon.qml
@@ -32,7 +32,7 @@ Control
anchors.fill: parent
color: UM.Theme.getColor("action_button_hovered")
radius: width
- UM.RecolorImage
+ UM.ColorImage
{
anchors.fill: parent
color: UM.Theme.getColor("primary")