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:
Joey de l'Arago 2022-12-30 13:32:31 +01:00
parent 8bdce0b0f2
commit f970d99e4f

View file

@ -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",