X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConnectorPlugin%2FConnectorPlugin_ExportFeature.py;h=9241308435320ab15b5bc4f3b83fd8f7431371cb;hb=857b1f72d9703c46c6c8c9bb239821d314344c86;hp=9f2768e4c68f875ee6a74bfc80fa07615238529e;hpb=79615009ffcea2fc48e5619d403499d2b4b5ec25;p=modules%2Fshaper.git diff --git a/src/ConnectorPlugin/ConnectorPlugin_ExportFeature.py b/src/ConnectorPlugin/ConnectorPlugin_ExportFeature.py index 9f2768e4c..924130843 100644 --- a/src/ConnectorPlugin/ConnectorPlugin_ExportFeature.py +++ b/src/ConnectorPlugin/ConnectorPlugin_ExportFeature.py @@ -86,8 +86,11 @@ class ExportFeature(ModelAPI.ModelAPI_Feature): aSelectionList = aFeature.data().selectionList("group_list") # if a group has been found if aSelectionList: + aFeature = ModelAPI.objectToFeature(aFeature) + if aFeature.firstResult() is not None: + aName = aFeature.firstResult().data().name() groupIndex = groupIndex + 1 - self.createGroupFromList(aSelectionList, "NewGeomGroup_{0}".format(groupIndex)) + self.createGroupFromList(aSelectionList, aName) ## Creates a group by given list of selected objects and the name # @param theSelectionList: list of selected objects