From f650579799d3e7cae5944a3d9cb0191259a52dd6 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Fri, 17 Jun 2022 15:02:45 +0200 Subject: [PATCH] PrintQuality icon is slightly too right aligned due to the icon not filling the entire svg. There is no additional margin on the left that can be removed, so instead I've given it a small negative margin CURA-8849 --- .../Recommended/RecommendedResolutionSelector.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml index bbad686514..4f1b49e931 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml @@ -22,6 +22,7 @@ Item id: resolutionTitle anchors.top: parent.top anchors.left: parent.left + anchors.leftMargin: - UM.Theme.getSize("thick_lining").width source: UM.Theme.getIcon("PrintQuality") text: catalog.i18nc("@label", "Resolution") width: labelColumnWidth