Skip to content
Snippets Groups Projects
Commit e46831e1 authored by Ryan Inch's avatar Ryan Inch
Browse files

Collection Manager: Change Operator Name. Task: T69577

Change Renumerate QCD Slots to Renumber QCD Slots
after feedback from the community.
parent 59071087
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ bl_info = { ...@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager", "name": "Collection Manager",
"description": "Manage collections and their objects", "description": "Manage collections and their objects",
"author": "Ryan Inch", "author": "Ryan Inch",
"version": (2, 7, 22), "version": (2, 7, 23),
"blender": (2, 80, 0), "blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)", "location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel "warning": '', # used for warning icon and text in addons panel
......
...@@ -282,11 +282,11 @@ class ViewQCDSlot(Operator): ...@@ -282,11 +282,11 @@ class ViewQCDSlot(Operator):
class RenumerateQCDSlots(Operator): class RenumerateQCDSlots(Operator):
bl_label = "Renumerate QCD Slots" bl_label = "Renumber QCD Slots"
bl_description = ( bl_description = (
"Renumerate QCD slots.\n" "Renumber QCD slots.\n"
" * LMB - Renumerate starting from the slot designated 1.\n" " * LMB - Renumber starting from the slot designated 1.\n"
" * Alt+LMB - Renumerate from the beginning" " * Alt+LMB - Renumber from the beginning"
) )
bl_idname = "view3d.renumerate_qcd_slots" bl_idname = "view3d.renumerate_qcd_slots"
bl_options = {'REGISTER', 'UNDO'} bl_options = {'REGISTER', 'UNDO'}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment