Collection Manager: Fix QCD filter button. Task: T69577

Fixes it so that the Filter by QCD button disappears when QCD is disabled.
This commit is contained in:
Ryan Inch 2020-03-23 20:07:15 -04:00
parent c6d8243636
commit b601e577df
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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 = []