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-02-14 10:32:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-14 10:32:04 +0300
commit816c135270c64e96fb5a923855539dc106ac05d7 (patch)
tree059b8409ec3c28930ad7d6413ff186d9d32054e2 /release
parentc6cbcf83d0153922ac32452c198252f44867a6cb (diff)
UI: add symmetrize to armature menu
Was lost on menu reorganization, minor tweaks to make it match the context menu.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index bb4a63d042c..3401be87442 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3754,6 +3754,7 @@ class VIEW3D_MT_edit_armature(Menu):
layout.separator()
+ layout.operator("armature.symmetrize")
layout.menu("VIEW3D_MT_edit_armature_names")
layout.separator()
@@ -3799,8 +3800,10 @@ class VIEW3D_MT_armature_specials(Menu):
layout.operator("armature.fill")
layout.operator("armature.switch_direction", text="Switch Direction")
- layout.operator("armature.symmetrize")
+ layout.separator()
+
+ layout.operator("armature.symmetrize")
layout.menu("VIEW3D_MT_edit_armature_names")
layout.separator()