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-05-22 20:24:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-22 20:24:09 +0400
commitf16f545c6e78f8d677408b566dd2001dbb90e7f8 (patch)
tree9317e997fd7f90effab16b484d153f75f2f80936 /source/blender/editors/sculpt_paint/paint_mask.c
parent3fc3c9f3b4003dd26e1df8282942622cbdb9e954 (diff)
style cleanup
also fix example for mesh uv's
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_mask.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_mask.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_mask.c b/source/blender/editors/sculpt_paint/paint_mask.c
index 000f43b0dec..919d2173bd2 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.c
+++ b/source/blender/editors/sculpt_paint/paint_mask.c
@@ -106,13 +106,13 @@ static int mask_flood_fill_exec(bContext *C, wmOperator *op)
} BLI_pbvh_vertex_iter_end;
BLI_pbvh_node_mark_update(nodes[i]);
- if(BLI_pbvh_type(pbvh) == PBVH_GRIDS)
+ if (BLI_pbvh_type(pbvh) == PBVH_GRIDS)
multires_mark_as_modified(ob, MULTIRES_COORDS_MODIFIED);
}
sculpt_undo_push_end();
- if(nodes)
+ if (nodes)
MEM_freeN(nodes);
ED_region_tag_redraw(ar);