From 5c723cc9d6cbb1985d331168acf5ac93a2256c37 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Thu, 14 Apr 2016 11:49:46 +0200 Subject: [PATCH] Fix string comparison in fdmprinter.json CURA-1394 --- resources/machines/fdmprinter.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index 15084c01a7..44d22276ba 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -1019,7 +1019,7 @@ "type": "boolean", "default": true, "visible": false, - "enabled": "retraction_combing != off", + "enabled": "retraction_combing != \"off\"", "global_only": "True" }, "travel_avoid_distance": { @@ -1033,7 +1033,7 @@ "max_value_warning": "machine_nozzle_tip_outer_diameter * 5", "visible": false, "inherit": false, - "enabled": "retraction_combing != off and travel_avoid_other_parts", + "enabled": "retraction_combing != \"off\" and travel_avoid_other_parts", "global_only": "True" } }