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-15 08:51:40 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-05-15 08:51:40 +0300
commite46831e1529db13c3d38e38f52f2c8c2228c941f (patch)
treed9469d4d29ef0ceaed71b0a830f3d630b0e86391
parent590710871b7b2e1f7f50bb622f1409b794ad38c2 (diff)
Collection Manager: Change Operator Name. Task: T69577
Change Renumerate QCD Slots to Renumber QCD Slots after feedback from the community.
-rw-r--r--object_collection_manager/__init__.py2
-rw-r--r--object_collection_manager/qcd_operators.py8
2 files changed, 5 insertions, 5 deletions
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'}