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:
authorMatt Ebb <matt@mke3.net>2004-05-21 05:35:10 +0400
committerMatt Ebb <matt@mke3.net>2004-05-21 05:35:10 +0400
commit2a622e35d4f96a805ab0de22f34d6ae3661a0a53 (patch)
tree17db261edf3c73d97c1ee19eb8778234705ba24f
parentaf6d9fb7a52629396269868572cae84957d78696 (diff)
Added Shift C 'Center Cursor and View All' to View -> Align View menu
-rw-r--r--source/blender/src/header_view3d.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/src/header_view3d.c b/source/blender/src/header_view3d.c
index f1be90c3f58..abce66949cb 100644
--- a/source/blender/src/header_view3d.c
+++ b/source/blender/src/header_view3d.c
@@ -299,6 +299,11 @@ static void do_view3d_view_alignviewmenu(void *arg, int event)
case 5: /* Align View to Selected (object mode) */
mainqenter(PADASTERKEY, 1);
break;
+ case 6: /* Center View and Cursor to Origin */
+ view3d_home(1);
+ curs= give_cursor();
+ curs[0]=curs[1]=curs[2]= 0.0;
+ break;
}
allqueue(REDRAWVIEW3D, 0);
}
@@ -312,7 +317,8 @@ static uiBlock *view3d_view_alignviewmenu(void *arg_unused)
block= uiNewBlock(&curarea->uiblocks, "view3d_view_alignviewmenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin);
uiBlockSetButmFunc(block, do_view3d_view_alignviewmenu, NULL);
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Centre View to Cursor|C", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 3, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Center View to Cursor|C", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 3, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Center Cursor and View All|Shift C", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 6, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Align Active Camera to View|Shift NumPad 0", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 4, "");
if (((G.obedit) && (G.obedit->type == OB_MESH)) || (G.f & G_FACESELECT)) {