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>2008-03-09 00:57:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-03-09 00:57:15 +0300
commit6f1b47d6af4c30c46821a99d7ce4b8a4b3e3d186 (patch)
treee47f5aae4de67100b049259f4071d66998db7b71 /source/blender/src/toolbox.c
parent027277fce0565f8518cf1fc3a0b3b34b8d0b3cda (diff)
added snap cursor->active and adjusted snap menu order in toolbox and header menu's
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index bbf991411c4..8b0df0322ab 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1295,9 +1295,10 @@ static TBitem tb_transform_clearapply[]= {
static TBitem tb_transform_snap[]= {
{ 0, "Selection -> Grid|Shift S, 1", 1, NULL},
{ 0, "Selection -> Cursor|Shift S, 2", 2, NULL},
-{ 0, "Cursor -> Grid|Shift S, 3", 3, NULL},
+{ 0, "Selection -> Center|Shift S, 3", 3, NULL},
{ 0, "Cursor -> Selection|Shift S, 4", 4, NULL},
-{ 0, "Selection -> Center|Shift S, 5", 5, NULL},
+{ 0, "Cursor -> Grid|Shift S, 5", 5, NULL},
+{ 0, "Cursor -> Active|Shift S, 6", 6, NULL},
{ -1, "", 0, do_view3d_edit_snapmenu}};
static void tb_do_transform(void *arg, int event)