diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index dcb4daf01cc8f3dcc96db659587c16bb889c0bd5..90179b69a64eff5c36da26c88a2b62aacfe67464 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 78d656435eca0928de2da7755f59fcc224b3b20b..208e5ae0cdbd958d1f8760589a9f41ddf7379ca3 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'}