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

Collection Manager: Fix QCD filter button. Task: T69577

Fixes it so that the Filter by QCD button disappears when QCD is disabled.
parent c6d82436
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
"version": (2,4,1),
"version": (2,4,2),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
......
......@@ -422,7 +422,9 @@ class CM_UL_items(UIList):
subrow = row.row(align=True)
subrow.prop(self, "filter_by_selected", text="", icon='SNAP_VOLUME')
subrow.prop(self, "filter_by_qcd", text="", icon='EVENT_Q')
if context.preferences.addons[__package__].preferences.enable_qcd:
subrow.prop(self, "filter_by_qcd", text="", icon='EVENT_Q')
def filter_items(self, context, data, propname):
flt_flags = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment