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>2020-09-27 09:13:22 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-09-27 09:13:22 +0300
commitd11dba8c07755df22b8062456013980788849a4c (patch)
treee083550df88fdf2e2dac60c7de3d2f173d6c25f6 /object_collection_manager
parent975f81d2bc5b446b144f0ecd8ed5be06b111073f (diff)
Collection Manager: Fix QCD Tooltips. Task: T69577
Adds missing tooltips for QCD slot object selection.
Diffstat (limited to 'object_collection_manager')
-rw-r--r--object_collection_manager/__init__.py2
-rw-r--r--object_collection_manager/qcd_operators.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 49ec349f..0f155745 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, 15, 1),
+ "version": (2, 15, 2),
"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/qcd_operators.py b/object_collection_manager/qcd_operators.py
index f53fe6bc..c9ecf5d5 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -581,7 +581,9 @@ class ViewMoveQCDSlot(Operator):
" * LMB - Isolate slot.\n"
" * Shift+LMB - Toggle slot.\n"
" * Ctrl+LMB - Move objects to slot.\n"
- " * Ctrl+Shift+LMB - Toggle objects' slot"
+ " * Ctrl+Shift+LMB - Toggle objects' slot.\n"
+ " * Alt+LMB - Select objects in slot.\n"
+ " * Alt+Shift+LMB - Toggle objects' selection for slot"
)
return f"{slot_string}{hotkey_string}"