diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index b7e44f8810d78f449b352a09554eefdec719c3ff..59eda7dbe253b51ccf729a6d148648f9ca89ffa5 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,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
diff --git a/object_collection_manager/ui.py b/object_collection_manager/ui.py
index 55dcbfb432d803effb9c7a580ee1b34b03eea7ad..2f3a4e9e02a3aea92b07348adf94fe5a936a54be 100644
--- a/object_collection_manager/ui.py
+++ b/object_collection_manager/ui.py
@@ -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 = []