From 475359c34f1a7bb58fe4db009d04255fee096bb7 Mon Sep 17 00:00:00 2001 From: Jonathan Smith <j.jaydez@gmail.com> Date: Thu, 22 Apr 2010 21:14:15 +0000 Subject: [PATCH] Rearangged snap cursor menu and renamed to be more consistent --- space_view3d_spacebar_menu.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py index c671abe31..6b6c0e23a 100644 --- a/space_view3d_spacebar_menu.py +++ b/space_view3d_spacebar_menu.py @@ -1152,22 +1152,20 @@ class VIEW3D_MT_CursorMenu(bpy.types.Menu): layout = self.layout layout.operator_context = 'INVOKE_REGION_WIN' - layout.operator("view3d.snap_cursor_to_center", - text="Snap Cursor to Center") - layout.operator("view3d.snap_selected_to_cursor", - text="Selection to Cursor") layout.operator("view3d.snap_cursor_to_selected", - text="Snap Cursor to Selected") - layout.separator() - + text="Cursor to Selected") + layout.operator("view3d.snap_cursor_to_center", + text="Cursor to Center") layout.operator("view3d.snap_cursor_to_grid", - text="Snap Cursor to Grid") + text="Cursor to Grid") layout.operator("view3d.snap_cursor_to_active", text="Cursor to Active") + layout.separator() + layout.operator("view3d.snap_selected_to_cursor", + text="Selection to Cursor") layout.operator("view3d.snap_selected_to_grid", text="Selection to Grid") layout.separator() - layout.operator("view3d.pivot_cursor", text="Set Cursor as Pivot Point") layout.operator("view3d.revert_pivot", -- GitLab