Fix missing break statement in recent face-set support

This commit is contained in:
Campbell Barton 2020-04-01 10:43:48 +11:00
parent f9f0f44be8
commit 91604279c9
1 changed files with 1 additions and 0 deletions

View File

@ -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);