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>2020-04-01 02:43:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-01 02:50:21 +0300
commit91604279c933b61bd8bef5d0bcf00691a0cfd91f (patch)
tree8550fa0f57019cc5da472a7efbdb75ecc057908a /source/blender/editors/sculpt_paint
parentf9f0f44be85d4631afbbf9b248dc7787dd41255f (diff)
Fix missing break statement in recent face-set support
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 50b8c9a9677..25cf17b12ce 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -436,6 +436,7 @@ void SCULPT_visibility_sync_all_face_sets_to_vertices(SculptSession *ss)
for (int i = 0; i < ss->totvert; i++) {
sculpt_visibility_sync_face_sets_to_vertex(ss, i);
}
+ break;
}
case PBVH_GRIDS: {
BKE_pbvh_sync_face_sets_to_grids(ss->pbvh);