From 8d1587b7b2c4a20abc110fa344bf4c2975ce8a8b Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 7 Apr 2026 09:48:43 +0200 Subject: [PATCH 1/2] Add autobrim option in settings. part of CURA-12961 --- resources/definitions/fdmprinter.def.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 8d8c040e885..6b94d582477 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6525,17 +6525,18 @@ "adhesion_type": { "label": "Build Plate Adhesion Type", - "description": "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model.", + "description": "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping (Select Auto-Brim to detect the need for a Brim automatically; if not, Skin will be printed instead). Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model.", "type": "enum", "options": { "skirt": "Skirt", "brim": "Brim", + "autobrim": "Auto-Brim", "raft": "Raft", "none": "None" }, "default_value": "brim", - "resolve": "min(extruderValues('adhesion_type'), key=('raft', 'brim', 'skirt', 'none').index)", + "resolve": "min(extruderValues('adhesion_type'), key=('raft', 'brim', 'autobrim', 'skirt', 'none').index)", "settable_per_mesh": false, "settable_per_extruder": false }, From e1cbbe4ce39306df3a2cfe0bf6e0d38432b6fee0 Mon Sep 17 00:00:00 2001 From: Remco Burema <41987080+rburema@users.noreply.github.com> Date: Tue, 21 Apr 2026 15:29:49 +0200 Subject: [PATCH 2/2] Apply untypo from code-review. CURA-12961 Co-authored-by: Erwan MATHIEU --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 6b94d582477..3f56a92f95a 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6525,7 +6525,7 @@ "adhesion_type": { "label": "Build Plate Adhesion Type", - "description": "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping (Select Auto-Brim to detect the need for a Brim automatically; if not, Skin will be printed instead). Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model.", + "description": "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping (Select Auto-Brim to detect the need for a Brim automatically; if not, Skirt will be printed instead). Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model.", "type": "enum", "options": {