Fix string comparison in fdmprinter.json

CURA-1394
This commit is contained in:
fieldOfView 2016-04-14 11:49:46 +02:00
parent 6223c0e2e9
commit 5c723cc9d6

View File

@ -1019,7 +1019,7 @@
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"visible": false, "visible": false,
"enabled": "retraction_combing != off", "enabled": "retraction_combing != \"off\"",
"global_only": "True" "global_only": "True"
}, },
"travel_avoid_distance": { "travel_avoid_distance": {
@ -1033,7 +1033,7 @@
"max_value_warning": "machine_nozzle_tip_outer_diameter * 5", "max_value_warning": "machine_nozzle_tip_outer_diameter * 5",
"visible": false, "visible": false,
"inherit": false, "inherit": false,
"enabled": "retraction_combing != off and travel_avoid_other_parts", "enabled": "retraction_combing != \"off\" and travel_avoid_other_parts",
"global_only": "True" "global_only": "True"
} }
} }