From 4abcc8b3f15d7a3d4aa3e0ace2a9b4d8c0bcb46c Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Wed, 10 May 2017 16:31:41 +0200 Subject: [PATCH] JSON fix: magic_spiralize had child setting (CURA-3771) it shouldn't have a child setting because that child is not the underlying setting used by the engine. Parent settings are frontend-only settings which are merely used to let the user edit multiple leaf settings at once. --- resources/definitions/fdmprinter.def.json | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d9fe2a72e0..46b3b125a4 100755 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4587,18 +4587,15 @@ "type": "bool", "default_value": false, "settable_per_mesh": false, - "settable_per_extruder": false, - "children": - { - "smooth_spiralized_contours": - { - "label": "Smooth Spiralized Contours", - "description": "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details.", - "type": "bool", - "default_value": true, - "enabled": "magic_spiralize" - } - } + "settable_per_extruder": false + }, + "smooth_spiralized_contours": + { + "label": "Smooth Spiralized Contours", + "description": "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details.", + "type": "bool", + "default_value": true, + "enabled": "magic_spiralize" } } },