[Bf-extensions-cvs] [e46831e1] blender-v2.83-release: Collection Manager: Change Operator Name. Task: T69577

Ryan Inch noreply at git.blender.org
Fri May 15 07:54:10 CEST 2020


Commit: e46831e1529db13c3d38e38f52f2c8c2228c941f
Author: Ryan Inch
Date:   Fri May 15 01:51:40 2020 -0400
Branches: blender-v2.83-release
https://developer.blender.org/rBAe46831e1529db13c3d38e38f52f2c8c2228c941f

Collection Manager: Change Operator Name. Task: T69577

Change Renumerate QCD Slots to Renumber QCD Slots
after feedback from the community.

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

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

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

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index dcb4daf0..90179b69 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, 22),
+    "version": (2, 7, 23),
     "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 78d65643..208e5ae0 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -282,11 +282,11 @@ class ViewQCDSlot(Operator):
 
 
 class RenumerateQCDSlots(Operator):
-    bl_label = "Renumerate QCD Slots"
+    bl_label = "Renumber QCD Slots"
     bl_description = (
-        "Renumerate QCD slots.\n"
-        "  * LMB - Renumerate starting from the slot designated 1.\n"
-        "  * Alt+LMB - Renumerate from the beginning"
+        "Renumber QCD slots.\n"
+        "  * LMB - Renumber starting from the slot designated 1.\n"
+        "  * Alt+LMB - Renumber from the beginning"
         )
     bl_idname = "view3d.renumerate_qcd_slots"
     bl_options = {'REGISTER', 'UNDO'}



More information about the Bf-extensions-cvs mailing list