Skip to content
Snippets Groups Projects
Commit e0a324e8 authored by Ryan Inch's avatar Ryan Inch
Browse files

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.
parent cc1a2f5a
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ bl_info = { ...@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager", "name": "Collection Manager",
"description": "Manage collections and their objects", "description": "Manage collections and their objects",
"author": "Ryan Inch", "author": "Ryan Inch",
"version": (2,7,8), "version": (2,7,9),
"blender": (2, 80, 0), "blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)", "location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel "warning": '', # used for warning icon and text in addons panel
......
...@@ -175,7 +175,7 @@ class ViewQCDSlot(Operator): ...@@ -175,7 +175,7 @@ class ViewQCDSlot(Operator):
'''View objects in QCD slot''' '''View objects in QCD slot'''
bl_label = "View QCD Slot" bl_label = "View QCD Slot"
bl_idname = "view3d.view_qcd_slot" bl_idname = "view3d.view_qcd_slot"
bl_options = {'REGISTER', 'UNDO'} bl_options = {'UNDO'}
slot: StringProperty() slot: StringProperty()
toggle: BoolProperty() toggle: BoolProperty()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment