mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 13:34:01 -06:00
bugfix: zero percent infill
This commit is contained in:
parent
caa7fdb147
commit
425b1fbcca
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@
|
|||
"min_value": 0.0,
|
||||
"default": 2.0,
|
||||
"visible": false,
|
||||
"inherit_function": "(infill_line_width * 100) / parent_value"
|
||||
"inherit_function": "0 if parent_value == 0 else (infill_line_width * 100) / parent_value"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue