From 141a2ad138ecff39b4b8f259886346612576dd09 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 3 Sep 2018 21:33:06 +0200 Subject: [PATCH] add missing comma separator in list --- 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 b4662e7e5f..3eed1ade82 100644 --- a/src/Gui/propertyeditor/PropertyItem.cpp +++ b/src/Gui/propertyeditor/PropertyItem.cpp @@ -2214,7 +2214,7 @@ void PropertyStringListItem::setValue(const QVariant& value) text.replace(QString::fromUtf8("'"),QString::fromUtf8("\\'")); std::string pystr = Base::Tools::escapedUnicodeFromUtf8(text.toUtf8()); - str << "u\"" << pystr.c_str() << "\""; + str << "u\"" << pystr.c_str() << "\", "; } str << "]"; setPropertyValue(data);