bsdd operators descriptions and naming

This commit is contained in:
Andrej730
2024-09-18 17:50:22 +05:00
parent de08d3726e
commit 06d927f8bb
2 changed files with 5 additions and 1 deletions
@@ -34,7 +34,7 @@ class LoadBSDDDomains(bpy.types.Operator):
class SetActiveBSDDDictionary(bpy.types.Operator):
bl_idname = "bim.set_active_bsdd_domain"
bl_label = "Load bSDD Dictionary"
bl_label = "Set bSDD Dictionary as active"
bl_options = {"REGISTER", "UNDO"}
name: bpy.props.StringProperty()
uri: bpy.props.StringProperty()
@@ -404,6 +404,10 @@ class AddClassificationReference(bpy.types.Operator, tool.Ifc.Operator):
class AddClassificationReferenceFromBSDD(bpy.types.Operator, tool.Ifc.Operator):
bl_idname = "bim.add_classification_reference_from_bsdd"
bl_label = "Add Classification Reference From bSDD"
bl_description = (
"Add classification reference from BSDD to the selected objects. "
"If class properties are loaded, they also will be assigned as psets/qsets"
)
bl_options = {"REGISTER", "UNDO"}
obj: bpy.props.StringProperty()
obj_type: bpy.props.StringProperty()