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>2013-05-12 14:00:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-12 14:00:15 +0400
commitf87464392c5cc270381d1c8d358abd525df53e9a (patch)
treebd72c8ccf2bdbd36a93f2cb8216b0c53c1bd2a70 /source/blender/bmesh/intern/bmesh_opdefines.c
parent877e0e1184230c320cf61d10873cbf1c0ed31072 (diff)
bridge option to bridge loop pairs,
change the operator option to an enum: Connect Loops - open/closed/pairs because it was getting confusing having all as bools.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_opdefines.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_opdefines.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_opdefines.c b/source/blender/bmesh/intern/bmesh_opdefines.c
index f145d6939d9..53e01b94712 100644
--- a/source/blender/bmesh/intern/bmesh_opdefines.c
+++ b/source/blender/bmesh/intern/bmesh_opdefines.c
@@ -515,6 +515,7 @@ static BMOpDefine bmo_bridge_loops_def = {
"bridge_loops",
/* slots_in */
{{"edges", BMO_OP_SLOT_ELEMENT_BUF, {BM_EDGE}}, /* input edges */
+ {"use_pairs", BMO_OP_SLOT_BOOL},
{"use_cyclic", BMO_OP_SLOT_BOOL},
{"use_merge", BMO_OP_SLOT_BOOL},
{"merge_factor", BMO_OP_SLOT_FLT},