Merge pull request #8045 from Ultimaker/CURA-6684_Ignore_extra_skin_wall_count_in_concentric

CURA-6684: Hide Extra Skin Wall Count in concentric
This commit is contained in:
Nino van Hooff 2020-07-14 15:41:02 +02:00 committed by GitHub
commit ad5eff4bc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1510,12 +1510,12 @@
{
"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",
"value": "0 if top_bottom_pattern == 'concentric' and top_bottom_pattern_0 == 'concentric' and roofing_layer_count <= 0 else 1",
"default_value": 1,
"minimum_value": "0",
"maximum_value_warning": "10",
"type": "int",
"enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'",
"enabled": "(top_layers > 0 or bottom_layers > 0) and (top_bottom_pattern != 'concentric' or top_bottom_pattern_0 != 'concentric' or (roofing_layer_count > 0 and roofing_pattern != 'concentric'))",
"limit_to_extruder": "top_bottom_extruder_nr",
"settable_per_mesh": true
},