mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Give warning if preshrink is larger than wall thickness
If it is larger, it could cause gaps to appear between the walls where infill is exposed. Contributes to #7231.
This commit is contained in:
parent
7d33830ae7
commit
fe8e892568
1 changed files with 3 additions and 0 deletions
|
@ -1981,6 +1981,7 @@
|
|||
"default_value": 1,
|
||||
"value": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
|
||||
"enabled": "top_layers > 0 or bottom_layers > 0",
|
||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
"settable_per_mesh": true,
|
||||
|
@ -1994,6 +1995,7 @@
|
|||
"type": "float",
|
||||
"default_value": 1,
|
||||
"value": "skin_preshrink",
|
||||
"maximum_value_warning": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
|
||||
"minimum_value": "0",
|
||||
"enabled": "top_layers > 0 or bottom_layers > 0",
|
||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
|
@ -2007,6 +2009,7 @@
|
|||
"type": "float",
|
||||
"default_value": 1,
|
||||
"value": "skin_preshrink",
|
||||
"maximum_value_warning": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
|
||||
"minimum_value": "0",
|
||||
"enabled": "top_layers > 0 or bottom_layers > 0",
|
||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue