mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-04 21:03:59 +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,
|
item_to_add = {"key": setting_key,
|
||||||
"label": label,
|
"label": label,
|
||||||
"user_value": user_changes.getProperty(setting_key, "value"),
|
"user_value": user_changes.getProperty(setting_key, "value"),
|
||||||
"original_value": original_value,
|
"original_value": str(original_value),
|
||||||
"extruder": "",
|
"extruder": "",
|
||||||
"category": category_label}
|
"category": category_label}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user