mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue