From e46831e1529db13c3d38e38f52f2c8c2228c941f Mon Sep 17 00:00:00 2001 From: Ryan Inch <mythologylover75@gmail.com> Date: Fri, 15 May 2020 01:51:40 -0400 Subject: [PATCH] Collection Manager: Change Operator Name. Task: T69577 Change Renumerate QCD Slots to Renumber QCD Slots after feedback from the community. --- object_collection_manager/__init__.py | 2 +- object_collection_manager/qcd_operators.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index dcb4daf01..90179b69a 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 78d656435..208e5ae0c 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'} -- GitLab