Collection Manager: Change Operator Name. Task: T69577

Change Renumerate QCD Slots to Renumber QCD Slots
after feedback from the community.
This commit is contained in:
Ryan Inch 2020-05-15 01:51:40 -04:00
parent 590710871b
commit e46831e152
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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'}