mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 22:13:58 -06:00
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.
This commit is contained in:
parent
246c986d95
commit
43897b60d8
1 changed files with 2 additions and 2 deletions
|
@ -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'"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue