[Bf-extensions-cvs] [b7bb14aa] blender-v2.83-release: Collection Manager: Fix tooltips. Task: T69577

Ryan Inch noreply at git.blender.org
Mon May 4 09:56:44 CEST 2020


Commit: b7bb14aa7caa8c8deb196bbc7907b82f24b6cb60
Author: Ryan Inch
Date:   Mon May 4 03:55:49 2020 -0400
Branches: blender-v2.83-release
https://developer.blender.org/rBAb7bb14aa7caa8c8deb196bbc7907b82f24b6cb60

Collection Manager: Fix tooltips. Task: T69577

===================================================================

M	object_collection_manager/__init__.py
M	object_collection_manager/operators.py
M	object_collection_manager/qcd_operators.py

===================================================================

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 2caf6bc7..242ca1aa 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, 18),
+    "version": (2, 7, 19),
     "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/operators.py b/object_collection_manager/operators.py
index 1d60d60c..ce39867e 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -926,13 +926,28 @@ class CMRemoveCollectionOperator(Operator):
 
 rename = [False]
 class CMNewCollectionOperator(Operator):
-    '''Add New Collection'''
     bl_label = "Add New Collection"
     bl_idname = "view3d.add_collection"
     bl_options = {'UNDO'}
 
     child: BoolProperty()
 
+    @classmethod
+    def description(cls, context, properties):
+        if properties.child:
+            tooltip = (
+                "Add New SubCollection.\n"
+                "Add a new subcollection to the currently selected collection"
+                )
+
+        else:
+            tooltip = (
+                "Add New Collection.\n"
+                "Add a new collection as a sibling of the currently selected collection"
+                )
+
+        return tooltip
+
     def execute(self, context):
         global rto_history
 
diff --git a/object_collection_manager/qcd_operators.py b/object_collection_manager/qcd_operators.py
index ba299a65..9d5242e5 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -142,7 +142,7 @@ class ViewMoveQCDSlot(Operator):
         hotkey_string = (
             "  * Shift+LMB - Toggle QCD slot.\n"
             "  * Ctrl+LMB - Move objects to QCD slot.\n"
-            "  * Ctrl+Shift+Click - Toggle objects' slot"
+            "  * Ctrl+Shift+LMB - Toggle objects' slot"
             )
 
         return f"{slot_string}{hotkey_string}"



More information about the Bf-extensions-cvs mailing list