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.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py
index 1025535e..177ab3d7 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -100,7 +100,6 @@ class ExpandAllOperator(Operator):
'''Expand/Collapse all collections'''
bl_label = "Expand All Items"
bl_idname = "view3d.expand_all_items"
- bl_options = {'REGISTER', 'UNDO'}
def execute(self, context):
global expand_history
@@ -131,7 +130,6 @@ class ExpandSublevelOperator(Operator):
" * Alt+LMB - Discard history"
)
bl_idname = "view3d.expand_sublevel"
- bl_options = {'REGISTER', 'UNDO'}
expand: BoolProperty()
name: StringProperty()