diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 59eda7dbe253b51ccf729a6d148648f9ca89ffa5..f273af7bd1154e8146a4b3bcf8c8d048dc1ffb6a 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,2),
+    "version": (2,4,3),
     "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/preferences.py b/object_collection_manager/preferences.py
index d40b43031b566d85471d1261baca5d2bb056b357..59708805c80c899d0127679fe565fda464552d07 100644
--- a/object_collection_manager/preferences.py
+++ b/object_collection_manager/preferences.py
@@ -182,14 +182,14 @@ class CMPreferences(AddonPreferences):
     # ENABLE QCD BOOLS
     enable_qcd: BoolProperty(
         name="QCD",
-        description="Enable/Disable QCD System",
+        description="Enable/Disable QCD System.\nThe Quick Content Display system allows you to specify collections as QCD \"slots\" up to a maximum of 20. You can then interact with them through numerical hotkeys, a popup move widget, and a 3D View header widget",
         default=True,
         update=update_qcd_status,
         )
 
     enable_qcd_view_hotkeys: BoolProperty(
         name="QCD Hotkeys",
-        description="Enable/Disable the view (number) hotkeys for QCD",
+        description="Enable/Disable the numerical hotkeys to view QCD slots",
         default=True,
         update=update_qcd_view_hotkeys_status,
         )