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>2009-02-02 22:31:43 +0300
committerTon Roosendaal <ton@blender.org>2009-02-02 22:31:43 +0300
commiteb00687cde2fd5724b22a8831d3294f4846ff934 (patch)
tree287e611fdcc6bec9e381757d5313ff7342a166c0 /source/blender/editors/mesh/mesh_ops.c
parentc29030245064fbd25d95fda2275533f8ce6c6f23 (diff)
2.5
Editmesh ops: - MESH_OT_select_multi_loop (based on selection it makes loops) - MESH_OT_select_linked added boolean 'limit' for linked limited by seams - MESH_OT_select_linked_pick same as above The 'limit' option used to work only for facemode, with a toolsettings option. So it had no own hotkey... i made it work for edges & vertices too, need to find hotkey later.
Diffstat (limited to 'source/blender/editors/mesh/mesh_ops.c')
-rw-r--r--source/blender/editors/mesh/mesh_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c
index 47a98a457c6..4497745c87f 100644
--- a/source/blender/editors/mesh/mesh_ops.c
+++ b/source/blender/editors/mesh/mesh_ops.c
@@ -160,6 +160,8 @@ void ED_operatortypes_mesh(void)
WM_operatortype_append(MESH_OT_similar_vertex_select);
WM_operatortype_append(MESH_OT_similar_edge_select);
WM_operatortype_append(MESH_OT_similar_face_select);
+ WM_operatortype_append(MESH_OT_select_multi_loop);
+
}
/* note mesh keymap also for other space? */