moved infill_pattern outside density ; made retraction visible by default

This commit is contained in:
Tim Kuipers 2015-08-25 09:19:30 +02:00
parent 96c63ef6e9
commit 289f9df67e

View File

@ -448,6 +448,17 @@
"type": "float",
"default": 20,
"children": {
"infill_line_distance": {
"label": "Line distance",
"description": "Distance between the printed infill lines.",
"unit": "mm",
"type": "float",
"default": 2,
"visible": false,
"inherit_function": "0 if parent_value == 0 else (infill_line_width * 100) / parent_value"
}
}
},
"infill_pattern": {
"label": "Infill Pattern",
"description": "Cura defaults to switching between grid and line infill. But with this setting visible you can control this yourself. The line infill swaps direction on alternate layers of infill, while the grid prints the full cross-hatching on each layer of infill.",
@ -462,17 +473,6 @@
"default": "Grid",
"inherit_function": "'Lines' if parent_value > 25 else 'Grid'"
},
"infill_line_distance": {
"label": "Line distance",
"description": "Distance between the printed infill lines.",
"unit": "mm",
"type": "float",
"default": 2,
"visible": false,
"inherit_function": "0 if parent_value == 0 else (infill_line_width * 100) / parent_value"
}
}
},
"infill_overlap": {
"label": "Infill Overlap",
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
@ -556,7 +556,8 @@
"label": "Enable Retraction",
"description": "Retract the filament when the nozzle is moving over a non-printed area. Details about the retraction can be configured in the advanced tab.",
"type": "boolean",
"default": true
"default": true,
"visible": true
},
"retraction_amount": {
"label": "Retraction Distance",