From 426d5a4eb628f8fd173778b2fb46ca4e22041cd0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 27 Feb 2024 13:40:14 +0100 Subject: [PATCH] Replace setting brim_outside_only by brim_location CURA-9838 --- resources/definitions/fdmprinter.def.json | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 1d453456a8..c6fb8fbb0e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6069,12 +6069,18 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "brim_outside_only": + "brim_location": { - "label": "Brim Only on Outside", - "description": "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much.", - "type": "bool", - "default_value": true, + "label": "Brim Location", + "description": "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion.", + "type": "enum", + "options": + { + "outside": "Outside Only", + "inside": "Inside Only", + "everywhere": "Everywhere" + }, + "default_value": "outside", "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false,