Salome HOME
Avoid crash on closing a viewer and deactivation of the module
[modules/shaper.git] / src / CollectionAPI / CollectionAPI_Group.cpp
index 98b6409d62221ad258780a2ce29d5950a86f0738..fae2ae36a7e5be5b549c6d08706a0ebe16897111 100644 (file)
@@ -64,7 +64,7 @@ void CollectionAPI_Group::dump(ModelHighAPI_Dumper& theDumper) const
   AttributeSelectionListPtr anAttrList = aBase->selectionList(CollectionPlugin_Group::LIST_ID());
 
   theDumper << aBase << " = model.addGroup(" << aDocName << ", ";
-  if (anAttrList->isWholeResultAllowed())
+  if (anAttrList->isWholeResultAllowed() && !anAttrList->selectionType().empty())
     theDumper<<"\""<<anAttrList->selectionType()<<"\", ";
   theDumper << anAttrList;
   if (anAttrList->isGeometricalSelection())