mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-10-10 15:27:53 -06:00
Fix retraction combing import
Retraction combing was an enum (a fact which was not documented). This enum must be parsed to a boolean. The 'no skin' option now evaluates to true since it is not implemented in the new Cura. Contributes to issue CURA-37.
This commit is contained in:
parent
731fd41ecd
commit
ef3b5792b4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
"speed_topbottom": "solidarea_speed if (solidarea_speed != 0) else print_speed",
|
||||
"speed_travel": "travel_speed if (travel_speed != 0) else travel_speed",
|
||||
"speed_layer_0": "bottom_layer_speed",
|
||||
"retraction_combing": "retraction_combing",
|
||||
"retraction_combing": "True if (retraction_combing == \"All\" or retraction_combing == \"No Skin\") else False",
|
||||
"cool_fan_enabled": "fan_enabled",
|
||||
"cool_fan_speed_min": "fan_speed",
|
||||
"cool_fan_speed_max": "fan_speed_max",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue