Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Inch <mythologylover75@gmail.com>2021-05-19 09:10:52 +0300
committerRyan Inch <mythologylover75@gmail.com>2021-05-19 09:10:52 +0300
commitdf01c14fdd8a3d13f3994925af9a451873473eff (patch)
tree7bd44b275e3a0fcf21e47a368ffe36283dc4c2a6 /object_collection_manager/ui.py
parenteb6aa304ca043bc77d8c00b78c4d0762952ad088 (diff)
Collection Manager: Tooltip fixes. Task: T69577
Diffstat (limited to 'object_collection_manager/ui.py')
-rw-r--r--object_collection_manager/ui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_collection_manager/ui.py b/object_collection_manager/ui.py
index 045d4dda..601b587a 100644
--- a/object_collection_manager/ui.py
+++ b/object_collection_manager/ui.py
@@ -540,14 +540,14 @@ class CM_UL_items(UIList):
filter_by_selected: BoolProperty(
name="Filter By Selected",
default=False,
- description="Filter collections by selected items",
+ description="Filter collections to only show the ones that contain the selected objects",
update=lambda self, context:
CM_UL_items.new_collections.clear(),
)
filter_by_qcd: BoolProperty(
name="Filter By QCD",
default=False,
- description="Filter collections to only show QCD slots",
+ description="Filter collections to only show the ones that are QCD slots",
update=lambda self, context:
CM_UL_items.new_collections.clear(),
)