Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-09-01 18:57:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-01 18:57:39 +0300
commita9e389b8c4875a73111e53780acdc03c5b7ccd00 (patch)
treeba8acc437cb9018f17a128aa846ec28cb36919ef /release/scripts/startup/bl_operators/wm.py
parent6ff675f830201033950269c107c8205992f810ff (diff)
WM: make find/replace default for batch rename
Use this since it's a common operation for batch naming.
Diffstat (limited to 'release/scripts/startup/bl_operators/wm.py')
-rw-r--r--release/scripts/startup/bl_operators/wm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 79a52ccd6e7..c20edced0f1 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -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"),
),
)