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-05-11 06:36:00 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-05-11 06:36:00 +0300
commit73bda89771d9c4bf57e5b1fbaa5e067f9ca00403 (patch)
tree5ed336ca81ef4b84f10ff11233b9117f113b52db
parentb4f07c45de2e012bf7342cc17974f4065fe73fdf (diff)
Collection Manager: QCD tooltip fixes. Task: T69577
Add LMB shortcut to the QCD header widget tooltip. Remove redundant references to QCD from this tooltip.
-rw-r--r--object_collection_manager/__init__.py2
-rw-r--r--object_collection_manager/qcd_operators.py5
2 files changed, 4 insertions, 3 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 65ebe49c..5c3edb7a 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, 7, 20),
+ "version": (2, 7, 21),
"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 9d5242e5..78d65643 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -140,8 +140,9 @@ class ViewMoveQCDSlot(Operator):
slot_string = f"QCD Slot {properties.slot}: \"{slot_name}\"\n"
hotkey_string = (
- " * Shift+LMB - Toggle QCD slot.\n"
- " * Ctrl+LMB - Move objects to QCD slot.\n"
+ " * LMB - Isolate slot.\n"
+ " * Shift+LMB - Toggle slot.\n"
+ " * Ctrl+LMB - Move objects to slot.\n"
" * Ctrl+Shift+LMB - Toggle objects' slot"
)