mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
Add minimum distance for skirt from model. At 0 the skirt is touching the model. Any lines closer will be removed even without the minimum.
Change minimum distance for brim to allow half line width overlap. CURA-9928
This commit is contained in:
parent
8bdce0b0f2
commit
f970d99e4f
1 changed files with 2 additions and 1 deletions
|
@ -5675,6 +5675,7 @@
|
|||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default_value": 3,
|
||||
"minimum_value": "0",
|
||||
"minimum_value_warning": "max(extruderValues('machine_nozzle_size'))",
|
||||
"maximum_value_warning": "10",
|
||||
"enabled": "resolveOrValue('adhesion_type') == 'skirt'",
|
||||
|
@ -5735,7 +5736,7 @@
|
|||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default_value": 0,
|
||||
"minimum_value": "0",
|
||||
"minimum_value": "-skirt_brim_line_width / 2",
|
||||
"maximum_value_warning": "skirt_brim_line_width",
|
||||
"enabled": "resolveOrValue('adhesion_type') == 'brim'",
|
||||
"limit_to_extruder": "skirt_brim_extruder_nr",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue