diff --git a/src/Gui/propertyeditor/PropertyItem.cpp b/src/Gui/propertyeditor/PropertyItem.cpp index 868c217fc9..7edebb0394 100644 --- a/src/Gui/propertyeditor/PropertyItem.cpp +++ b/src/Gui/propertyeditor/PropertyItem.cpp @@ -574,7 +574,7 @@ void PropertyItem::setPropertyName(const QString& name, const QString& realName) setObjectName(propName); QString display; - // Prevent camel case splitting on numbers in Property Editor + // Camel case splitting for (auto&& i : name) { if (i.isUpper() && !display.isEmpty()) { QChar last = display.at(display.length() - 1);