mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 10:17:52 -06:00
Fix upgrade 40 to 41
This commit is contained in:
parent
083564a184
commit
50e4519298
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class VersionUpgrade40to41(VersionUpgrade):
|
|||
parser["metadata"]["setting_version"] = "7"
|
||||
|
||||
# Limit Maximum Deviation instead of Maximum Resolution. This should have approximately the same effect as before the algorithm change, only more consistent.
|
||||
if "meshfix_maximum_resolution" in parser["values"]:
|
||||
if "values" in parser and "meshfix_maximum_resolution" in parser["values"]:
|
||||
resolution = parser["values"]["meshfix_maximum_resolution"]
|
||||
if resolution.startswith("="):
|
||||
resolution = resolution[1:]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue