diff --git a/src/Gui/propertyeditor/PropertyItem.cpp b/src/Gui/propertyeditor/PropertyItem.cpp index bd06c653b7..372c5a5ebe 100644 --- a/src/Gui/propertyeditor/PropertyItem.cpp +++ b/src/Gui/propertyeditor/PropertyItem.cpp @@ -2274,7 +2274,7 @@ QVariant PropertyFloatListItem::value(const App::Property* prop) const QStringList list; const std::vector& value = static_cast(prop)->getValues(); for (std::vector::const_iterator jt = value.begin(); jt != value.end(); ++jt) { - list << QString::number(*jt); + list << QString::number(*jt, 'f', decimals()); } return QVariant(list);