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:
Ghostkeeper 2016-01-13 15:52:38 +01:00
parent 731fd41ecd
commit ef3b5792b4

View File

@ -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",