Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_collection_manager/operators.py')
-rw-r--r--object_collection_manager/operators.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py
index afcfb266..55ca3a62 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -290,13 +290,13 @@ class SelectAllCumulativeObjectsOperator(Operator):
return {'FINISHED'}
-class CMSetCollectionOperator(Operator):
- bl_label = "Set Object Collection"
+class CMSendObjectsToCollectionOperator(Operator):
+ bl_label = "Send Objects to Collection"
bl_description = (
- " * LMB - Move object to collection.\n"
- " * Shift+LMB - Add/Remove object from collection"
+ " * LMB - Move objects to collection.\n"
+ " * Shift+LMB - Add/Remove objects from collection"
)
- bl_idname = "view3d.set_collection"
+ bl_idname = "view3d.send_objects_to_collection"
bl_options = {'REGISTER', 'UNDO'}
is_master_collection: BoolProperty()