WM: make find/replace default for batch rename

Use this since it's a common operation for batch naming.
This commit is contained in:
Campbell Barton 2019-09-02 01:57:39 +10:00
parent 6ff675f830
commit a9e389b8c4
1 changed files with 1 additions and 1 deletions

View File

@ -1770,9 +1770,9 @@ class BatchRenameAction(bpy.types.PropertyGroup):
type: EnumProperty(
name="Operation",
items=(
('REPLACE', "Find/Replace", "Replace text in the name"),
('SET', "Set Name", "Set a new name or prefix/suffix the existing one"),
('STRIP', "Strip Characters", "Strip leading/trailing text from the name"),
('REPLACE', "Find/Replace", "Replace text in the name"),
('CASE', "Change Case", "Change case of each name"),
),
)