From 68de54c80319d0758147b674000a9cd08ef66b60 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Fri, 22 Apr 2022 11:01:26 +0200 Subject: [PATCH] Path for placeholder image was one to many folders up. CURA-9146 --- plugins/Marketplace/resources/qml/CompatibilityDialog.qml | 4 ++-- plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml | 2 +- 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 }