mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
JSON bugfix: default brim width (CURA-550)
This commit is contained in:
parent
26a7fc7bdc
commit
71c8393f8c
1 changed files with 3 additions and 3 deletions
|
@ -1375,15 +1375,15 @@
|
|||
"description": "The distance from the model to the end of the brim. A larger brim sticks better to the build platform, but also makes your effective print area smaller.",
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.8,
|
||||
"default": 5.0,
|
||||
"enabled": "adhesion_type == \"brim\"",
|
||||
"children": {
|
||||
"brim_line_count": {
|
||||
"label": "Brim Line Count",
|
||||
"description": "The number of lines used for a brim. More lines means a larger brim which sticks better to the build plate, but this also makes your effective print area smaller.",
|
||||
"type": "int",
|
||||
"default": 20,
|
||||
"inherit_function": "parent_value / skirt_line_width",
|
||||
"default": 13,
|
||||
"inherit_function": "math.ceil(parent_value / skirt_line_width)",
|
||||
"enabled": "adhesion_type == \"brim\""
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue