From 29f827a5750eccd0af071b06cf401be99d5129fd Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 15 Sep 2015 00:30:28 +0200 Subject: [PATCH] + do not update item while editor is active --- src/Gui/propertyeditor/PropertyEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/propertyeditor/PropertyEditor.cpp b/src/Gui/propertyeditor/PropertyEditor.cpp index c56b0b0f85e7..5dce1e6a1663 100644 --- a/src/Gui/propertyeditor/PropertyEditor.cpp +++ b/src/Gui/propertyeditor/PropertyEditor.cpp @@ -148,7 +148,7 @@ void PropertyEditor::buildUp(const PropertyModel::PropertyList& props) void PropertyEditor::updateProperty(const App::Property& prop) { // forward this to the model if the property is changed from outside - //if (!committing) + if (!committing) propertyModel->updateProperty(prop); }