Collection Manager: Tooltip update. Task: T69577

Update the tooltips for the enable QCD checkboxes in the preferences
to be more descriptive.
This commit is contained in:
Ryan Inch 2020-03-23 20:35:06 -04:00
parent b601e577df
commit d348bde0f9
2 changed files with 3 additions and 3 deletions

View File

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

View File

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