mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-04 07:04:18 +08:00
Values are now converted to string.
For some reason this causes a different rounding to occur. I don't know why, but it does solve the problem CURA-3221
This commit is contained in:
parent
4d7133610d
commit
4d32bbda99
@ -101,7 +101,7 @@ class UserChangesModel(ListModel):
|
||||
item_to_add = {"key": setting_key,
|
||||
"label": label,
|
||||
"user_value": user_changes.getProperty(setting_key, "value"),
|
||||
"original_value": original_value,
|
||||
"original_value": str(original_value),
|
||||
"extruder": "",
|
||||
"category": category_label}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user