From 0db7cf2453b574f422f5281da3fa65bd71f2adac Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 1 Nov 2016 10:28:09 +0100 Subject: [PATCH 1/2] Revert 'Added a comment' and 'Set horizontal expansion' This horizontal expansion messes prints with very thin parts. It was probably the wrong solution for the problem. We'll revert the change until we hear more from tests at the materials team. Contributes to issue CURA-2845. --- resources/definitions/ultimaker3.def.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 26b3a8495a..8be8751d68 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -154,7 +154,6 @@ "travel_avoid_distance": { "value": "3" }, "wall_0_inset": { "value": "0" }, "wall_line_width_x": { "value": "round(line_width * 0.3 / 0.35, 2)" }, - "wall_thickness": { "value": "1" }, - "xy_offset": { "value": "-0.14", "comment": "This is a hack to compensate for oversized prints. CURA-2845" } + "wall_thickness": { "value": "1" } } } From 32653c2df4329f3257762f1ab28cf35e10a279b2 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 1 Nov 2016 16:06:56 +0100 Subject: [PATCH 2/2] Blur settings upon discarding current settings Otherwise the currently selected setting doesn't get discarded. Contributes to issue CURA-2866. --- resources/qml/Actions.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 3ee8630183..d7a0a87dbe 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -131,7 +131,11 @@ Item id: resetProfileAction; enabled: Cura.MachineManager.hasUserSettings text: catalog.i18nc("@action:inmenu menubar:profile","&Discard current settings"); - onTriggered: Cura.ContainerManager.clearUserContainers(); + onTriggered: + { + forceActiveFocus(); + Cura.ContainerManager.clearUserContainers(); + } } Action