mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-11 07:29:00 +08: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
@ -30,7 +30,7 @@
|
|||||||
"speed_topbottom": "solidarea_speed if (solidarea_speed != 0) else print_speed",
|
"speed_topbottom": "solidarea_speed if (solidarea_speed != 0) else print_speed",
|
||||||
"speed_travel": "travel_speed if (travel_speed != 0) else travel_speed",
|
"speed_travel": "travel_speed if (travel_speed != 0) else travel_speed",
|
||||||
"speed_layer_0": "bottom_layer_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_enabled": "fan_enabled",
|
||||||
"cool_fan_speed_min": "fan_speed",
|
"cool_fan_speed_min": "fan_speed",
|
||||||
"cool_fan_speed_max": "fan_speed_max",
|
"cool_fan_speed_max": "fan_speed_max",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user