mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
Change distribution count to be the maximum diameter of distribution
Instead of the minimum. So previously a value of 2 would make it spread the error over 2 walls for an even number, or 3 for an odd. Now it makes it spread the error over 2 walls for an even number or 1 for an odd. This means that the minimum allowed value becomes 2, because for an even wall count it needs to place the error somewhere. Done as a 5 minute fix.
This commit is contained in:
parent
a94415b388
commit
cbe3cf778a
1 changed files with 2 additions and 2 deletions
|
@ -1146,8 +1146,8 @@
|
|||
"label": "Wall Distribution Count",
|
||||
"description": "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width.",
|
||||
"type": "int",
|
||||
"default_value": 2,
|
||||
"minimum_value": "1",
|
||||
"default_value": 3,
|
||||
"minimum_value": "2",
|
||||
"enabled": "beading_strategy_type == 'inward_distributed'"
|
||||
},
|
||||
"wall_transition_angle":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue