Skip to content
Snippets Groups Projects
Commit d348bde0 authored by Ryan Inch's avatar Ryan Inch
Browse files

Collection Manager: Tooltip update. Task: T69577

Update the tooltips for the enable QCD checkboxes in the preferences
to be more descriptive.
parent b601e577
Branches
Tags
No related merge requests found
...@@ -22,7 +22,7 @@ bl_info = { ...@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager", "name": "Collection Manager",
"description": "Manage collections and their objects", "description": "Manage collections and their objects",
"author": "Ryan Inch", "author": "Ryan Inch",
"version": (2,4,2), "version": (2,4,3),
"blender": (2, 80, 0), "blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)", "location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel "warning": '', # used for warning icon and text in addons panel
......
...@@ -182,14 +182,14 @@ class CMPreferences(AddonPreferences): ...@@ -182,14 +182,14 @@ class CMPreferences(AddonPreferences):
# ENABLE QCD BOOLS # ENABLE QCD BOOLS
enable_qcd: BoolProperty( enable_qcd: BoolProperty(
name="QCD", 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, default=True,
update=update_qcd_status, update=update_qcd_status,
) )
enable_qcd_view_hotkeys: BoolProperty( enable_qcd_view_hotkeys: BoolProperty(
name="QCD Hotkeys", name="QCD Hotkeys",
description="Enable/Disable the view (number) hotkeys for QCD", description="Enable/Disable the numerical hotkeys to view QCD slots",
default=True, default=True,
update=update_qcd_view_hotkeys_status, update=update_qcd_view_hotkeys_status,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment