From 60ebafd0b3e2155b88117e20e67edbcfb4675944 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Fri, 6 Mar 2026 22:36:12 -0600 Subject: [PATCH] Gui: Tweak comment for clarity Co-authored-by: Pieter Hijma --- src/Gui/propertyeditor/PropertyItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);