mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Using wall_thickness of 0 now results in wall_line_count of 0
This commit is contained in:
parent
87a9555719
commit
fa97295481
1 changed files with 1 additions and 1 deletions
|
@ -731,7 +731,7 @@
|
|||
"default_value": 2,
|
||||
"minimum_value": "0",
|
||||
"type": "int",
|
||||
"value": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1)",
|
||||
"value": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1) if wall_thickness != 0 else 0",
|
||||
"settable_per_mesh": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue