From d348bde0f96809e289b0514c015cafb97f2dcf79 Mon Sep 17 00:00:00 2001 From: Ryan Inch <mythologylover75@gmail.com> Date: Mon, 23 Mar 2020 20:35:06 -0400 Subject: [PATCH] Collection Manager: Tooltip update. Task: T69577 Update the tooltips for the enable QCD checkboxes in the preferences to be more descriptive. --- object_collection_manager/__init__.py | 2 +- object_collection_manager/preferences.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 59eda7dbe..f273af7bd 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 d40b43031..59708805c 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, ) -- GitLab