From 2b3efe43293e9aab001145c698086887d18f9d22 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Wed, 8 Jun 2016 12:23:54 +0200 Subject: [PATCH] JSON fix: type boolean should be bool (CURA-1443) --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 716f7aa55f..6912c88904 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1188,7 +1188,7 @@ "acceleration_enabled": { "label": "Enable Acceleration Control", "description": "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality.", - "type": "boolean", + "type": "bool", "default_value": false, "global_only": "True" }, @@ -1354,7 +1354,7 @@ "jerk_enabled": { "label": "Enable Jerk Control", "description": "Enables adjusting the jerk of print head when the X ar Y axis halts or starts to move. Increasing the jerk can reduce printing time at the cost of print quality.", - "type": "boolean", + "type": "bool", "default_value": false, "global_only": "True" },