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:
Jaime van Kessel 2017-02-28 13:42:35 +01:00
parent 4d7133610d
commit 4d32bbda99

View File

@ -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}