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-13 19:39:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-13 19:39:58 +0300
commit5d4cbbb16cde901af8e7bfbf42acccc5b7ea6810 (patch)
treec82de74cc3a0c8fd0ce1810b6a29da7dc72bddf8 /release/scripts/startup/bl_operators/wm.py
parent0ab550d8e0223621bad5a2bb2bccb4d4f0d1b0a6 (diff)
UI: don't mark batch rename as internal
Prevented it showing in operator search.
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 18675fb29e3..d2e2a61826f 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1844,7 +1844,7 @@ class WM_OT_batch_rename(Operator):
bl_idname = "wm.batch_rename"
bl_label = "Batch Rename"
- bl_options = {'UNDO', 'INTERNAL'}
+ bl_options = {'UNDO'}
data_type: EnumProperty(
name="Type",