mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
Fix import of top and bottom thickness
The legacy settings had a boolean for these, but in the current version is should just be a float. Contributes to issue CURA-37.
This commit is contained in:
parent
84613d99c4
commit
68496349a9
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@
|
|||
"layer_height_0": "bottom_thickness",
|
||||
"shell_thickness": "wall_thickness",
|
||||
"top_bottom_thickness": "solid_layer_thickness",
|
||||
"top_thickness": "solid_top",
|
||||
"bottom_thickness": "solid_bottom",
|
||||
"top_thickness": "0 if (solid_top == \"False\") else solid_layer_thickness",
|
||||
"bottom_thickness": "0 if (solid_bottom == \"False\") else solid_layer_thickness",
|
||||
"skin_no_small_gaps_heuristic": "fix_horrible_extensive_stitching",
|
||||
"infill_sparse_density": "fill_density",
|
||||
"infill_overlap": "fill_overlap",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue