Add new setting for the number of walls around the raft

We want to be able to set this to 0. But to be most consistent with how we handle other structures in Cura I'd like to make this a numeric setting.

Contributes to issue CURA-8081.
This commit is contained in:
Ghostkeeper 2021-12-13 16:26:29 +01:00 committed by casper
parent b1c297761b
commit 007e26d83e

View File

@ -7875,6 +7875,16 @@
"enabled": "resolveOrValue('adhesion_type') == 'raft'",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"raft_wall_count":
{
"label": "Raft Wall Count",
"description": "The number of contours to print around the linear pattern in the raft.",
"type": "int",
"default_value": 1,
"enabled": "resolveOrValue('adhesion_type') == 'raft'",
"settable_per_mesh": false,
"settable_per_extruder": false
}
}
},