[Bf-extensions-cvs] [d348bde0] master: Collection Manager: Tooltip update. Task: T69577

Ryan Inch noreply at git.blender.org
Tue Mar 24 04:28:58 CET 2020


Commit: d348bde0f96809e289b0514c015cafb97f2dcf79
Author: Ryan Inch
Date:   Mon Mar 23 20:35:06 2020 -0400
Branches: master
https://developer.blender.org/rBAd348bde0f96809e289b0514c015cafb97f2dcf79

Collection Manager: Tooltip update. Task: T69577

Update the tooltips for the enable QCD checkboxes in the preferences
to be more descriptive.

===================================================================

M	object_collection_manager/__init__.py
M	object_collection_manager/preferences.py

===================================================================

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 59eda7db..f273af7b 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 d40b4303..59708805 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,
         )



More information about the Bf-extensions-cvs mailing list