From d5f2b0060996d5d80aea2ee89fe6c6726159c8ae Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 23 Dec 2015 15:43:29 +0100 Subject: [PATCH] + add missing comma in property item --- src/Mod/Mesh/Gui/PropertyEditorMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Mesh/Gui/PropertyEditorMesh.cpp b/src/Mod/Mesh/Gui/PropertyEditorMesh.cpp index 351f6a8dbf..d8206a7855 100644 --- a/src/Mod/Mesh/Gui/PropertyEditorMesh.cpp +++ b/src/Mod/Mesh/Gui/PropertyEditorMesh.cpp @@ -74,7 +74,7 @@ QVariant PropertyMeshKernelItem::value(const App::Property*) const ctF += (int)rMesh.CountFacets(); } - QString str = QObject::tr("[Points: %1, Edges: %2 Faces: %3]").arg(ctP).arg(ctE).arg(ctF); + QString str = QObject::tr("[Points: %1, Edges: %2, Faces: %3]").arg(ctP).arg(ctE).arg(ctF); return QVariant(str); }