[Bf-blender-cvs] [cf73569d894] master: UI: run interactive 'Point From Normal' in normal menu

Campbell Barton noreply at git.blender.org
Mon Jul 1 08:49:07 CEST 2019


Commit: cf73569d8942a82f5da5b99ab0e70e1929a99231
Author: Campbell Barton
Date:   Mon Jul 1 16:46:48 2019 +1000
Branches: master
https://developer.blender.org/rBcf73569d8942a82f5da5b99ab0e70e1929a99231

UI: run interactive 'Point From Normal' in normal menu

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

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")



More information about the Bf-blender-cvs mailing list