From d84545540b93644a06cd3599d1dd472f7f91cf14 Mon Sep 17 00:00:00 2001 From: jspijker Date: Tue, 10 Jan 2023 09:02:23 +0100 Subject: [PATCH] Fix unnecessary `default_value(s)` in blocks_base definition Contributes to CURA-10101 --- resources/definitions/blocks_base.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json index 6435300518..9ca8d66bed 100644 --- a/resources/definitions/blocks_base.def.json +++ b/resources/definitions/blocks_base.def.json @@ -64,17 +64,17 @@ "retraction_hop_enabled": { "value": "False" }, "retraction_prime_speed": { - "default_value": 20, + "value": 20, "maximum_value": 200 }, "retraction_retract_speed": { - "maximum_value": 200, + "value": 200, "maximum_value_warning": 130 }, "retraction_speed": { - "default_value": 40, + "value": 40, "maximum_value": 200 }, "roofing_layer_count": { "value": 1 },