From 862e459f528fca37cf0823ff31866db531c2a1a6 Mon Sep 17 00:00:00 2001 From: jelle Spijker Date: Tue, 30 Jun 2020 13:44:27 +0200 Subject: [PATCH] skin_outline_count is now determined with equation in default_value Failed on test `test_validateOverridingDefaultValue` previously. Part of CURA-6684 --- resources/definitions/fdmprinter.def.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index ba4eb6200c..99236f7b7d 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1510,8 +1510,7 @@ { "label": "Extra Skin Wall Count", "description": "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material.", - "value": "0 if top_bottom_pattern == 'concentric' else 1", - "default_value": 1, + "default_value": "0 if top_bottom_pattern == 'concentric' else 1", "minimum_value": "0", "maximum_value_warning": "10", "type": "int",