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:
authorTon Roosendaal <ton@blender.org>2005-10-22 23:34:31 +0400
committerTon Roosendaal <ton@blender.org>2005-10-22 23:34:31 +0400
commitac3e3eceba2506235652a5a92a85b5f4567f91f1 (patch)
tree254870fe996e8c6f2bbcb22d6a466a49292801ee /source/blender/src/editview.c
parent9e197399447007e64ee2f8aec36330fd55ddf44f (diff)
Long on the wishlist!
- CTRL+click in EditMesh now extrudes selection. If no selection, it adds a new vertex. Try it on a full selected monkey. Fun! :) - CTRL+click now also adds the new stuff aligned with the view, as if you had translated it to the mouse cursor. Only new vertices are added with respect to 3D cursor location.
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index 7f45e353ecd..7c343058d8a 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -853,7 +853,7 @@ void mouse_cursor(void)
allqueue(REDRAWVIEW3D, 1);
if(lr_click) {
- if(G.obedit->type==OB_MESH) addvert_mesh();
+ if(G.obedit->type==OB_MESH) add_click_mesh();
else if ELEM(G.obedit->type, OB_CURVE, OB_SURF) addvert_Nurb(0);
else if (G.obedit->type==OB_ARMATURE) addvert_armature();
VECCOPY(fp, oldcurs);