From b8e37936319625327f79073f7141bc7bd64d819b Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 14 Jun 2022 16:19:56 +0200 Subject: [PATCH] Fix QML warning about no variable 'transparent' existing It's a colour name. It should be within quotes here. Contributes to issue CURA-8849. --- .../Recommended/RecommendedQualityProfileSelectorButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml index a08cfab37a..278a75ce0f 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml @@ -62,7 +62,7 @@ Rectangle radius: width anchors.verticalCenter: parent.verticalCenter visible: icon == "" - color: transparent + color: "transparent" border.width: UM.Theme.getSize("thick_lining").width border.color: UM.Theme.getColor("text")