mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
Merge branch '5.7' into CURA-11734-add-a-learn-more-buttn-for-ucp
This commit is contained in:
commit
1344ee4bd4
7259 changed files with 7263 additions and 7258 deletions
|
@ -68,6 +68,11 @@ class VersionUpgrade56to57(VersionUpgrade):
|
|||
if removed in parser["values"]:
|
||||
del parser["values"][removed]
|
||||
|
||||
if "brim_outside_only" in parser["values"]:
|
||||
parser["values"]["brim_location"] = "outside" if parser["values"][
|
||||
"brim_outside_only"] == "True" else "everywhere"
|
||||
del parser["values"]["brim_outside_only"]
|
||||
|
||||
result = io.StringIO()
|
||||
parser.write(result)
|
||||
return [filename], [result.getvalue()]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue