Merge branch 'main' into CURA-10542-Drop-to-buildplate-permodel

This commit is contained in:
Saumya Jain 2024-02-26 15:52:20 +01:00 committed by GitHub
commit abc0719aa3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,7 +118,7 @@ class SettingsExportModel(QObject):
setting_type = settings_stack.getProperty(setting_to_export, "type")
if setting_type is not None:
# This is not very good looking, but will do for now
value = SettingDefinition.settingValueToString(setting_type, value) + " " + unit
value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}"
else:
value = str(value)