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:
authorRemco Burema <41987080+rburema@users.noreply.github.com>2022-04-22 14:38:19 +0300
committerGitHub <noreply@github.com>2022-04-22 14:38:19 +0300
commit5d859ffaccfc17a386d09f9f56021e4f5be64cdf (patch)
tree8854cba9b0df0f53fb5d3eebdfb6c167ef828ae2 /plugins/Marketplace
parentd53a40a923fc3fc08945ec6d16f89b6f5c0fa13d (diff)
parent68de54c80319d0758147b674000a9cd08ef66b60 (diff)
Merge pull request #11876 from Ultimaker/CURA-9146_missing_placeholder_images
CURA-9146 missing placeholder images for Marketplace
Diffstat (limited to 'plugins/Marketplace')
-rw-r--r--plugins/Marketplace/resources/qml/CompatibilityDialog.qml4
-rw-r--r--plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Marketplace/resources/qml/CompatibilityDialog.qml b/plugins/Marketplace/resources/qml/CompatibilityDialog.qml
index 837c4defa5..331502a7a7 100644
--- a/plugins/Marketplace/resources/qml/CompatibilityDialog.qml
+++ b/plugins/Marketplace/resources/qml/CompatibilityDialog.qml
@@ -67,7 +67,7 @@ UM.Dialog
Image
{
id: packageIcon
- source: model.icon_url || Qt.resolvedUrl("../../images/placeholder.svg")
+ source: model.icon_url || Qt.resolvedUrl("../images/placeholder.svg")
height: lineHeight
width: height
sourceSize.height: height
@@ -109,7 +109,7 @@ UM.Dialog
Image
{
id: packageIcon
- source: model.icon_url || Qt.resolvedUrl("../../images/placeholder.svg")
+ source: model.icon_url || Qt.resolvedUrl("../images/placeholder.svg")
height: lineHeight
width: height
sourceSize.height: height
diff --git a/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml b/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml
index aa11d3a7e9..a3d4b60221 100644
--- a/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml
+++ b/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml
@@ -51,7 +51,7 @@ UM.Dialog
sourceSize.width: width
sourceSize.height: height
fillMode: Image.PreserveAspectFit
- source: licenseModel.iconUrl || Qt.resolvedUrl("../../images/placeholder.svg")
+ source: licenseModel.iconUrl || Qt.resolvedUrl("../images/placeholder.svg")
mipmap: true
}