[Bf-extensions-cvs] [e0a324e8] blender-v2.83-release: Collection Manager: Fix T75738. Task: T69577.

Ryan Inch noreply at git.blender.org
Thu Apr 16 07:39:41 CEST 2020


Commit: e0a324e87bc903dd048ffc34af85b9a01af7f928
Author: Ryan Inch
Date:   Thu Apr 16 01:37:13 2020 -0400
Branches: blender-v2.83-release
https://developer.blender.org/rBAe0a324e87bc903dd048ffc34af85b9a01af7f928

Collection Manager: Fix T75738. Task: T69577.

Hide the 'View QCD Slot' operator from 'Adjust Last Operation'
as it was never intended to be used with that.

===================================================================

M	object_collection_manager/__init__.py
M	object_collection_manager/qcd_operators.py

===================================================================

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index ba6b5b19..0a5eed5d 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
     "name": "Collection Manager",
     "description": "Manage collections and their objects",
     "author": "Ryan Inch",
-    "version": (2,7,8),
+    "version": (2,7,9),
     "blender": (2, 80, 0),
     "location": "View3D - Object Mode (Shortcut - M)",
     "warning": '',  # used for warning icon and text in addons panel
diff --git a/object_collection_manager/qcd_operators.py b/object_collection_manager/qcd_operators.py
index 5c5300c1..81eaf6ba 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -175,7 +175,7 @@ class ViewQCDSlot(Operator):
     '''View objects in QCD slot'''
     bl_label = "View QCD Slot"
     bl_idname = "view3d.view_qcd_slot"
-    bl_options = {'REGISTER', 'UNDO'}
+    bl_options = {'UNDO'}
 
     slot: StringProperty()
     toggle: BoolProperty()



More information about the Bf-extensions-cvs mailing list