From ef3b5792b4b209dcd8504e1e149db9fe4ff158b1 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 13 Jan 2016 15:52:38 +0100 Subject: [PATCH] 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. --- plugins/LegacyProfileReader/DictionaryOfDoom.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/LegacyProfileReader/DictionaryOfDoom.json b/plugins/LegacyProfileReader/DictionaryOfDoom.json index 26eb2904e9..d246efabe3 100644 --- a/plugins/LegacyProfileReader/DictionaryOfDoom.json +++ b/plugins/LegacyProfileReader/DictionaryOfDoom.json @@ -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",