From d67d45372cec6f774d1f54dabbf3a30ba4e8949d Mon Sep 17 00:00:00 2001 From: Ryan Inch <mythologylover75@gmail.com> Date: Sun, 10 May 2020 23:36:00 -0400 Subject: [PATCH] Collection Manager: QCD tooltip fixes. Task: T69577 Add LMB shortcut to the QCD header widget tooltip. Remove redundant references to QCD from this tooltip. --- object_collection_manager/__init__.py | 2 +- object_collection_manager/qcd_operators.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 65ebe49c2..5c3edb7a1 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 9d5242e51..78d656435 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" ) -- GitLab