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>2012-02-23 16:11:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 16:11:27 +0400
commite164cddc4317184898ca1eb9f39d106f194207ff (patch)
treec3431c72aab19a4081fcdb477ce43a915abc9ed6 /source/blender/bmesh/operators/bmo_primitive.c
parentedc1dde20d53f85903ec818e729cf7f502aa89fc (diff)
adding icosphere was broken with own recent commit
Diffstat (limited to 'source/blender/bmesh/operators/bmo_primitive.c')
-rw-r--r--source/blender/bmesh/operators/bmo_primitive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_primitive.c b/source/blender/bmesh/operators/bmo_primitive.c
index dc9b26cd665..e674a3f2856 100644
--- a/source/blender/bmesh/operators/bmo_primitive.c
+++ b/source/blender/bmesh/operators/bmo_primitive.c
@@ -424,8 +424,8 @@ void bmesh_create_icosphere_exec(BMesh *bm, BMOperator *op)
BMOperator bmop;
BMO_op_initf(bm, &bmop,
- "esubd edges=%fe smooth=%f numcuts=%i gridfill=%i beauty=%i",
- EDGE_MARK, dia, 1, 1, B_SPHERE);
+ "esubd edges=%fe smooth=%f numcuts=%i gridfill=%b beauty=%i",
+ EDGE_MARK, dia, 1, TRUE, B_SPHERE);
BMO_op_exec(bm, &bmop);
BMO_slot_buffer_flag_enable(bm, &bmop, "geomout", VERT_MARK, BM_VERT);
BMO_slot_buffer_flag_enable(bm, &bmop, "geomout", EDGE_MARK, BM_EDGE);