diff --git a/PropertyEditor/source/src/Customization/PropertyTypeCustomization_PointF.cpp b/PropertyEditor/source/src/Customization/PropertyTypeCustomization_PointF.cpp index aa35383..d324229 100644 --- a/PropertyEditor/source/src/Customization/PropertyTypeCustomization_PointF.cpp +++ b/PropertyEditor/source/src/Customization/PropertyTypeCustomization_PointF.cpp @@ -32,7 +32,7 @@ void PropertyTypeCustomization_PointF::customizeHeaderRow(QPropertyHandle* inPro auto updateLabel = [valueLabel](const QVariant& var) { QPointF pt = var.value(); - valueLabel->setProperty("pointText", QString("(%1, %2)").arg(pt.x(), 0, 'f', 3).arg(pt.y(), 0, 'f', 3)); + valueLabel->setProperty("pointText", QString(" (%1, %2)").arg(pt.x(), 0, 'f', 3).arg(pt.y(), 0, 'f', 3)); }; updateLabel(inPropertyHandle->getVar());