From d89c170e9ff4a120015db53f1f730955e2ea960a Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Wed, 18 Apr 2012 15:46:50 -0300 Subject: [PATCH] Changed Group property of App::DocumentObjectGroup to writeable So in App::DocumentObjectGroupPython instance there is an easy way to manipulate group contents. --- src/App/DocumentObjectGroup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/DocumentObjectGroup.cpp b/src/App/DocumentObjectGroup.cpp index ceb0fca72..53b3eb1dd 100644 --- a/src/App/DocumentObjectGroup.cpp +++ b/src/App/DocumentObjectGroup.cpp @@ -37,7 +37,7 @@ PROPERTY_SOURCE(App::DocumentObjectGroup, App::DocumentObject) DocumentObjectGroup::DocumentObjectGroup() { - ADD_PROPERTY_TYPE(Group,(0),"Base",(App::PropertyType)(Prop_ReadOnly|Prop_Output),"List of referenced objects"); + ADD_PROPERTY_TYPE(Group,(0),"Base",(App::PropertyType)(Prop_Output),"List of referenced objects"); } DocumentObjectGroup::~DocumentObjectGroup()