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-07-01 09:46:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-01 09:48:47 +0300
commitcf73569d8942a82f5da5b99ab0e70e1929a99231 (patch)
tree1c3c120267d68feb8737a6c806003544e3f7af71 /release/scripts/startup/bl_ui
parentcfea0d9eb81d72bc4b57982b1a701b061949757e (diff)
UI: run interactive 'Point From Normal' in normal menu
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8630fe49696..b58df73805b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3871,10 +3871,10 @@ class VIEW3D_MT_edit_mesh_normals(Menu):
layout.operator("mesh.set_normals_from_faces", text="Set From Faces")
layout.operator_context = 'INVOKE_DEFAULT'
- layout.operator("transform.rotate_normal", text="Rotate")
+ layout.operator("transform.rotate_normal", text="Rotate...")
+ layout.operator("mesh.point_normals", text="Point to Target...")
layout.operator_context = 'EXEC_DEFAULT'
- layout.operator("mesh.point_normals", text="Point to Target")
layout.operator("mesh.merge_normals", text="Merge")
layout.operator("mesh.split_normals", text="Split")
layout.menu("VIEW3D_MT_edit_mesh_normals_average", text="Average")
@@ -6301,7 +6301,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(Menu):
op = layout.operator("gpencil.stroke_cyclical_set", text="Close")
op.type = 'CLOSE'
op.geometry = True
-
+
layout.separator()
layout.menu("VIEW3D_MT_mirror")