From 43897b60d89c04c5db3ebe5585ae5e8cca1eca14 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 13 Oct 2021 15:42:46 +0200 Subject: [PATCH] Properly use strings as values for enums in setting overrides This is interpreted as a Python function, so if it doesn't have those quotes it'll be interpreted as a variable name, and that variable doesn't exist. Contributes to issue CURA-8627. --- resources/definitions/ultimaker2.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index 2f9deb64b1..ca44f154e2 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -91,13 +91,13 @@ "value": false }, "retraction_combing": { - "value": "no_outer_surfaces" + "value": "'no_outer_surfaces'" }, "skin_monotonic" : { "value": true }, "top_bottom_pattern" : { - "value": "zigzag" + "value": "'zigzag'" } } }